
button,input[type=button],input[type=submit] {
    background-color: rgb(0, 128, 224);
    *background-color: rgb(0, 96, 160);
    background-image: -moz-linear-gradient(top, rgb(0, 129, 224), rgb(0, 64, 128));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgb(0, 129, 224)), to(rgb(0, 64, 128)));
    background-image: -webkit-linear-gradient(top, rgb(0, 129, 224), rgb(0, 64, 128));
    background-image: -o-linear-gradient(top, rgb(0, 129, 224), rgb(0, 64, 128));
    background-image: linear-gradient(to bottom, rgb(0, 129, 224), rgb(0, 64, 128));
    background-repeat: repeat-x;
    color: #FFFFFF;
    border: 1px solid lightgrey;
    font-size: 1em;
    padding: 0.5em;
    margin: 0.75em 0;
    min-width: 302px;
    border: none;
}
button:hover,input[type=button]:hover,input[type=submit]:hover {
    opacity: 0.9;
}
button:disabled,input[type=submit]:disabled {
    background-color: rgb(64, 128, 160);
    *background-color: rgb(64, 96, 160);
    background-image: -moz-linear-gradient(top, rgb(64, 129, 160), rgb(64, 64, 128));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgb(64, 129, 160)), to(rgb(64, 64, 128)));
    background-image: -webkit-linear-gradient(top, rgb(64, 129, 160), rgb(64, 64, 128));
    background-image: -o-linear-gradient(top, rgb(64, 129, 160), rgb(64, 64, 128));
    background-image: linear-gradient(to bottom, rgb(64, 129, 160), rgb(64, 64, 128));
    background-repeat: repeat-x;
    color: #EEEEEE;
}
a.button {
    cursor: default;
}
a.button.close {
    font-family: 'Helvetica Neue', Helvetica, Arial, Tahoma, Verdana, sans-serif;
    color: rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.0);
    font-weight: bold;
    font-size: 1.75em;
    border: none;
    float: right;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3em 0.5em;
    z-index: 3;
}
a.button:hover {
    color: rgba(0, 0, 0, 0.9);
}
