/*
BLUE BUTTON 3D
*/

.button3dblue {
	background-color:#3bb3e0;
	text-transform:uppercase;
	font-weight:200;
	font-size:16px;
	text-decoration:none;
	color:#fff;
	position:relative;
	padding:10px 20px;
	padding-right:50px;
	background-image: linear-gradient(bottom, rgb(50,160,205) 0%, rgb(45,145,185) 100%);
	background-image: -o-linear-gradient(bottom, rgb(50,160,205) 0%, rgb(45,145,185) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(50,160,205) 0%, rgb(45,145,185) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(50,160,205) 0%, rgb(45,145,185) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(50,160,205) 0%, rgb(45,145,185) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(50,160,205)),
	color-stop(1, rgb(45,145,185))
	);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;
	-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;
	-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;
	box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;
}

.button3dblue:hover {
	color:#fff;
}

.button3dblue:active {
	color:fff;
	top:3px;
	background-image: linear-gradient(bottom, rgb(45,145,185) 0%, rgb(50,160,205) 100%);
	background-image: -o-linear-gradient(bottom, rgb(45,145,185) 0%, rgb(50,160,205) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(45,145,185) 0%, rgb(50,160,205) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(45,145,185) 0%, rgb(50,160,205) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(45,145,185) 0%, rgb(50,160,205) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(45,145,185)),
	color-stop(1, rgb(50,160,205))
	);
	-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;
	-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;
	-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;
	box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;
}

.button3dblue::before {
	color:fff;
	background-color:#2591b4;
	background-image:url(../../image/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 #052756, 0px 1px 0px #60c9f0;
	-moz-box-shadow: inset 0px 1px 0px #052756, 0px 1px 0px #60c9f0;
	-o-box-shadow: inset 0px 1px 0px #052756, 0px 1px 0px #60c9f0;
	box-shadow: inset 0px 1px 0px #052756, 0px 1px 0px #60c9f0;
}

.button3dblue:active::before {
	color:fff;
	top:50%;
	margin-top:-12px;
	-webkit-box-shadow: inset 0px 1px 0px #60c9f0, 0px 3px 0px #0e3871, 0px 6px 3px #1a80a6;
	-moz-box-shadow: inset 0px 1px 0px #60c9f0, 0px 3px 0px #0e3871, 0px 6px 3px #1a80a6;
	-o-box-shadow: inset 0px 1px 0px #60c9f0, 0px 3px 0px #0e3871, 0px 6px 3px #1a80a6;
	box-shadow: inset 0px 1px 0px #60c9f0, 0px 3px 0px #0e3871, 0px 6px 3px #1a80a6;
}

/*
GREEN BUTTON 3D
*/

.button3dgreen {
	background-color:#75e03b;
	text-transform:uppercase;
	font-weight:200;
	font-size:16px;
	text-decoration:none;
	color:#fff;
	position:relative;
	padding:10px 20px;
	padding-right:50px;
	background-image: linear-gradient(bottom, rgb(113,189,31) 0%, rgb(91,156,21) 100%);
	background-image: -o-linear-gradient(bottom, rgb(113,189,31) 0%, rgb(91,156,21) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(113,189,31) 0%, rgb(91,156,21) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(113,189,31) 0%, rgb(91,156,21) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(113,189,31) 0%, rgb(91,156,21) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(113,189,31)),
	color-stop(1, rgb(91,156,21))
	);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 1px 0px #81ce1c, 0px 5px 0px 0px #448515, 0px 10px 5px #999;
	-moz-box-shadow: inset 0px 1px 0px #81ce1c, 0px 5px 0px 0px #448515, 0px 10px 5px #999;
	-o-box-shadow: inset 0px 1px 0px #81ce1c, 0px 5px 0px 0px #448515, 0px 10px 5px #999;
	box-shadow: inset 0px 1px 0px #81ce1c, 0px 5px 0px 0px #448515, 0px 10px 5px #999;
}

.button3dgreen:hover {
	color:#fff;
}

.button3dgreen:active {
	top:3px;
	background-image: linear-gradient(bottom, rgb(91,156,21) 0%, rgb(113,189,31) 100%);
	background-image: -o-linear-gradient(bottom, rgb(91,156,21) 0%, rgb(113,189,31) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(91,156,21) 0%, rgb(113,189,31) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(91,156,21) 0%, rgb(113,189,31) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(91,156,21) 0%, rgb(113,189,31) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(91,156,21)),
	color-stop(1, rgb(113,189,31))
	);
	-webkit-box-shadow: inset 0px 1px 0px #81ce1c, 0px 2px 0px 0px #448515, 0px 5px 3px #999;
	-moz-box-shadow: inset 0px 1px 0px #81ce1c, 0px 2px 0px 0px #448515, 0px 5px 3px #999;
	-o-box-shadow: inset 0px 1px 0px #81ce1c, 0px 2px 0px 0px #448515, 0px 5px 3px #999;
	box-shadow: inset 0px 1px 0px #81ce1c, 0px 2px 0px 0px #448515, 0px 5px 3px #999;
}

.button3dgreen::before {
	background-color:#5d9b20;
	background-image:url(../../image/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 #295605, 0px 1px 0px #8cf060;
	-moz-box-shadow: inset 0px 1px 0px #295605, 0px 1px 0px #8cf060;
	-o-box-shadow: inset 0px 1px 0px #295605, 0px 1px 0px #8cf060;
	box-shadow: inset 0px 1px 0px #295605, 0px 1px 0px #8cf060;
}

.button3dgreen:active::before {
	top:50%;
	margin-top:-12px;
	-webkit-box-shadow: inset 0px 1px 0px #9af060, 0px 3px 0px #33710e, 0px 6px 3px #66a61a;
	-moz-box-shadow: inset 0px 1px 0px #9af060, 0px 3px 0px #33710e, 0px 6px 3px #66a61a;
	-o-box-shadow: inset 0px 1px 0px #9af060, 0px 3px 0px #33710e, 0px 6px 3px #66a61a;
	box-shadow: inset 0px 1px 0px #9af060, 0px 3px 0px #33710e, 0px 6px 3px #66a61a;
}

/*
More 3D
*/

.More3d {
	background-color:#d9d9d9;
	padding-bottom:6px;
	padding-left:15px;
	padding-right:15px;
	padding-top:6px;
	position:relative;
	text-transform:uppercase;
	font-weight: normal;
	font-size:14px;
	text-decoration:none;
	text-shadow: 0px 1px 0px hsla(0.0, 0.0%, 100.0%, 0.90);
	color:#707070;
	border: solid 1px #aeaeae;
	background-image: linear-gradient(bottom, rgb(200,200,200) 0%, rgb(228,228,228) 100%);
	background-image: -o-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(228,228,228) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(228,228,228) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(228,228,228) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(200,200,200) 0%, rgb(228,228,228) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(200,200,200)),
	color-stop(1, rgb(228,228,228))
	);
	-webkit-box-shadow: inset 0px 1px 0px #f2f2f2, 0px 1px 0px #fff;
	-moz-box-shadow: inset 0px 1px 0px #f2f2f2, 0px 1px 0px #fff;
	box-shadow: inset 0px 1px 0px #f2f2f2, 0px 1px 0px #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}

.More3d::before {
	background-color:#dfdfdf;
	content:"";
	display:block;
	position:absolute;
	width:100%;
	height:100%;
	padding:6px;
	left:-6px;
	top:-6px;
	z-index:-1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;
	-moz-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;
	-o-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;
	box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;
}

.More3d:active {
	padding-bottom:6px;
	padding-left:15px;
	padding-right:15px;
	padding-top:6px;
	top:0px;
	background-image: linear-gradient(bottom, rgb(228,228,228) 0%, rgb(200,200,200) 100%);
	background-image: -o-linear-gradient(bottom, rgb(228,228,228) 0%, rgb(200,200,200) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(228,228,228) 0%, rgb(200,200,200) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(228,228,228) 0%, rgb(200,200,200) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(228,228,228) 0%, rgb(200,200,200) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(228,228,228)),
	color-stop(1, rgb(200,200,200))
	);
}