﻿
.myButton {
    /*    background: radial-gradient(closest-side, #a9a9a9 50%, #ffffff 100%);*/
    background: radial-gradient(ellipse at top, #fff, transparent), radial-gradient(ellipse at bottom, #fff, transparent);
    border: none;
    border-color: #ce0000;
    display: inline-block;
    cursor: pointer;
    color: #ce0000;
    font-family: Arial;
    font-size: 16px;
    padding: 11px 75px;
    text-decoration: none;
    /*    text-shadow: 0px -1px 0px #2b665e;*/
    // max-width: 476px;
    width: 100%;
    height: 36px;
}

    .myButton:hover {
/*        background: linear-gradient(to bottom, #a9a9a9 0%, #ffffff 100%);*/
        color: #ab0000;
    font-weight: bold;
/*        text-shadow: 0px -1px 0px #2b665e;*/
        /*background-color: #778585;*/
    }

.myButton:active {
    position: relative;
    top: 1px;
}

