/* 
    customs.css  

*/

.redbox {
    color: red;
    font-size: 1.0em;
    background: white;
    border: 2px solid red;
    padding: 10px;
    margin: 10px;
    position: relative;
}

.fett {
    font-weight: bold;
}

.moneybox {
    font-size: 1.2em;
    vertical-align: top;
    text-align: right;
}

.myButton {
    -moz-box-shadow: inset 0px 1px 8px 0px orange;
    -webkit-box-shadow: inset 0px 1px 8px 0px orange;
    box-shadow: inset 0px 1px 8px 0px white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, orange));
    background: -moz-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -webkit-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -o-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -ms-linear-gradient(top, #ffffff 5%, orange 100%);
    background: linear-gradient(to bottom, #ffffff 5%, orange 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='gold', endColorstr='orange',GradientType=0);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    background-color: gold;
    border: 1px solid gold;
    color: black;
    font-size: 0.9em;
    font-weight: bold;
    padding: 3px 12px;
    text-decoration: none;
}

    .myButton:hover {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, yellow), color-stop(1, #ffffff));
        background: -moz-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -webkit-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -o-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -ms-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: linear-gradient(to bottom, yellow 5%, #ffffff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
        background-color: yellow;
        color: darkblue;
    }

    .myButton:active {
        position: relative;
        top: 1px;
    }

.myButtonC {
    -moz-box-shadow: inset 0px 1px 8px 0px orange;
    -webkit-box-shadow: inset 0px 1px 8px 0px orange;
    box-shadow: inset 0px 1px 8px 0px white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, orange));
    background: -moz-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -webkit-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -o-linear-gradient(top, #ffffff 5%, orange 100%);
    background: -ms-linear-gradient(top, #ffffff 5%, orange 100%);
    background: linear-gradient(to bottom, #ffffff 5%, orange 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='gold', endColorstr='orange',GradientType=0);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    background-color: gold;
    border: 1px solid gold;
    color: black;
    font-size: .7em;
    font-weight: normal;
    padding: 3px 3px;
    text-decoration: none;
    text-align: center;
}

    .myButtonC:hover {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, yellow), color-stop(1, #ffffff));
        background: -moz-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -webkit-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -o-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: -ms-linear-gradient(top, yellow 5%, #ffffff 100%);
        background: linear-gradient(to bottom, yellow 5%, #ffffff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
        background-color: yellow;
    }

    .myButtonC:active {
        position: relative;
        top: 1px;
    }
