﻿
.button 
{
    margin:1%;
    width:100%;

	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	padding:3%;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-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;
}



.orange {
	color: #fef4e9;
	 border:none;
	background: #faa51a;
	background: -webkit-gradient(linear, left top, left bottom, from(#65a8a5), to(#52908d));
	background: -moz-linear-gradient(top,  #65a8a5,  #52908d);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#65a8a5', endColorstr='#52908d');
}
.orange:hover {
	background: #65a8a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#65a8a5), to(#52908d));
	background: -moz-linear-gradient(top,  #65a8a5,  #65a8a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#65a8a5', endColorstr='#52908d');
}
.orange:active {
	color: #fef4e9;
	background: -webkit-gradient(linear, left top, left bottom, from(#65a8a5), to(#52908d));
	background: -moz-linear-gradient(top,  #65a8a5,  #52908d);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#65a8a5', endColorstr='#52908d');
}

.button .orange a 
{
    color:white;
}