﻿.myButton
{
    -moz-box-shadow: -2px -7px 20px -6px #1b2a33;
    -webkit-box-shadow: -2px -7px 20px -6px #1b2a33;
    box-shadow: -2px -7px 20px -6px #1b2a33;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #1b2a33), color-stop(1, #689299));
    background: -moz-linear-gradient(top, #1b2a33 5%, #689299 100%);
    background: -webkit-linear-gradient(top, #1b2a33 5%, #689299 100%);
    background: -o-linear-gradient(top, #1b2a33 5%, #689299 100%);
    background: -ms-linear-gradient(top, #1b2a33 5%, #689299 100%);
    background: linear-gradient(to bottom, #1b2a33 5%, #689299 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1b2a33', endColorstr='#689299',GradientType=0);
    background-color: #1b2a33;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Trebuchet MS;
    font-size: 17px;
    font-weight: bold;
    padding: 6px 40px;
    text-decoration: none;
    text-shadow: -6px 5px 1px #1b2a33;
 
}
.myButton:hover
{
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #689299), color-stop(1, #1b2a33));
    background: -moz-linear-gradient(top, #689299 5%, #1b2a33 100%);
    background: -webkit-linear-gradient(top, #689299 5%, #1b2a33 100%);
    background: -o-linear-gradient(top, #689299 5%, #1b2a33 100%);
    background: -ms-linear-gradient(top, #689299 5%, #1b2a33 100%);
    background: linear-gradient(to bottom, #689299 5%, #1b2a33 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#689299', endColorstr='#1b2a33',GradientType=0);
    background-color: #689299;
}
.myButton:active
{
    position: relative;
    top: 1px;
}


