﻿body {
}

    .myButton1 {
        
        -moz-box-shadow: 3px 4px 0px 0px #3b9c03;
        -webkit-box-shadow: 3px 4px 0px 0px #3b9c03;
        box-shadow: 3px 4px 0px 0px #3b9c03;
        
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #92f558), color-stop(1, #348a02));
        background:-moz-linear-gradient(top, #92f558 5%, #348a02 100%);
        background:-webkit-linear-gradient(top, #92f558 5%, #348a02 100%);
        background:-o-linear-gradient(top, #92f558 5%, #348a02 100%);
        background:-ms-linear-gradient(top, #92f558 5%, #348a02 100%);
        background:linear-gradient(to bottom, #92f558 5%, #348a02 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#92f558', endColorstr='#348a02',GradientType=0);
        
        background-color:#92f558;
        
        -moz-border-radius:5px;
        -webkit-border-radius:5px;
        border-radius:5px;
        
        border:1px solid #328503;
        
        display:inline-block;
        color:#ffffff;
        font-family:arial;
        font-size:17px;
        font-weight:bold;
        padding:12px 44px;
        text-decoration:none;
        cursor:pointer;
        text-shadow:0px 1px 0px #44b006;
        
    }
    .myButton1:hover {
        
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #348a02), color-stop(1, #92f558));
        background:-moz-linear-gradient(top, #348a02 5%, #92f558 100%);
        background:-webkit-linear-gradient(top, #348a02 5%, #92f558 100%);
        background:-o-linear-gradient(top, #348a02 5%, #92f558 100%);
        background:-ms-linear-gradient(top, #348a02 5%, #92f558 100%);
        background:linear-gradient(to bottom, #348a02 5%, #92f558 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#348a02', endColorstr='#92f558',GradientType=0);
        
        background-color:#348a02;
    }
    .myButton1:active {
        position:relative;
        top:1px;
    }
