﻿.button {
    background: url("buttons/button-blue.png") repeat-x scroll 0 0 #2D5672;
    border-color: #111111;
    border-radius: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    color: #FFFFFF !important;
    cursor: pointer;
    display: inline-block;
    height: 14px;
    padding: 5px 10px;
}
input.button[type="submit"] {
    height: 26px;
}
.button:hover {
    background: url("buttons/button-blue.png") repeat-x scroll 0 -24px #4D7690;
    color: #FFFFFF !important;
    text-decoration: none;
}
.button:active {
    background: url("buttons/button-blue.png") repeat-x scroll 0 -48px #6290B2;
}
.button.red {
    background: url("buttons/button-red.png") repeat-x scroll 0 0 #6B352B;
}
.button.red:hover {
    background: url("buttons/button-red.png") repeat-x scroll 0 -24px #834A3F;
}
.button.red:active {
    background: url("buttons/button-red.png") repeat-x scroll 0 -48px #A85F51;
}