button.inputButton {
        float: left;
        text-align: center;
        display: block;
        cursor: pointer;
        margin: 0 20px 10px 0;
        padding: 6px 0;
        background: #F8F8F8;
        background: -webkit-gradient(linear, center bottom, center top, from(#CCC), to(white));
        background: -moz-linear-gradient(top, white, #CCC);
        background: linear-gradient(to bottom, white, #CCC);
        text-shadow: 0 1px 0 white;
        border: 1px solid #999;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        box-shadow: 0px 0px 2px #999;
        -moz-box-shadow: 0px 0px 2px #999;
        -webkit-box-shadow: 0px 0px 2px #999;
        width: 80px;
    }
 
    button.inputButton.selected {
        font-weight: normal;
        background: #02475A;
        background: -webkit-gradient(linear, center bottom, center top, from(#777), to(#333));
        background: -moz-linear-gradient(top, #333, #777);
        background: linear-gradient(to bottom, #333, #777);
        box-shadow: inset 0px 0px 2px #222;
        -moz-box-shadow: inset 0px 0px 2px #222;
        -webkit-box-shadow: inset 0px 0px 2px #222;
        color: white;
        text-shadow: none;
    }