.CSSButton {
border: 1px solid #F1DA36;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #FFD700), color-stop(0.9, #F1DA36) );
background: -moz-linear-gradient( center top, #FFD700 10%, #F1DA36 90% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD700', endColorstr='#F1DA36');
background-color: #FFD700;
-moz-box-shadow: inset 0px 1px 2px 0px #FFFFFF;
-webkit-box-shadow: inset 0px 1px  2px 0px #FFFFFF;
box-shadow: inset 0px 1px  2px 0px #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
text-shadow: 1px 1px 2px #000000;
font-weight: bold;
margin: 10px 10px;
padding: 6px 6px;
color: #007FFF;
letter-spacing: 1px;
font-family: 'Arial', sans-serif;
font-size: 23px;
width: 150px;
text-transform: capitalize;
text-align: center;
text-decoration: none;
cursor: pointer;
display: inline-block;
}
.CSSButton:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #F1DA36), color-stop(0.9, #FFD700) );
background: -moz-linear-gradient( center top, #F1DA36 10%, #FFD700 90% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F1DA36', endColorstr='#FFD700');
background-color: #F1DA36;
}
.CSSButton:active {
position: relative;
top: 1px;
left: 0px;
}


.CSSButton2 {
border: 1px solid #A6A0A0;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #C0C0C0), color-stop(0.9, #EDEDED) );
background: -moz-linear-gradient( center top, #C0C0C0 10%, #EDEDED 90% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#C0C0C0', endColorstr='#EDEDED');
background-color: #C0C0C0;
-moz-box-shadow: inset 0px 1px 2px 0px #E0E0E0;
-webkit-box-shadow: inset 0px 1px  2px 0px #E0E0E0;
box-shadow: inset 0px 1px  2px 0px #E0E0E0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
text-shadow: 1px 1px 2px #FFFFFF;
font-weight: bold;
margin: 10px 10px;
padding: 6px 6px;
color: #007FFF;
letter-spacing: 1px;
font-family: 'Arial', sans-serif;
font-size: 23px;
width: 150px;
text-transform: capitalize;
text-align: center;
text-decoration: none;
cursor: pointer;
display: inline-block;
}
.CSSButton2:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #EDEDED), color-stop(0.9, #C0C0C0) );
background: -moz-linear-gradient( center top, #EDEDED 10%, #C0C0C0 90% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EDEDED', endColorstr='#C0C0C0');
background-color: #EDEDED;
}
.CSSButton2:active {
position: relative;
top: 1px;
left: 0px;
}

