a.btn, input.btn {
    color: #FFFFFF;
}

.btn {
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 5px 12px;

    min-width: 80px;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFFFFF;
    background: none repeat scroll 0 0 #7C8C9B;
    cursor: pointer;
    *font-weight: bold;
    *margin-top: -3px;
}

input::-moz-focus-inner /*Remove button padding in FF*/
{
    border: 0;
    padding: 0;
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: #6c7c8b;
    text-decoration: none;
}

.btn-not-active {
    pointer-events: none;
    cursor: default;
}

.btn-primary {
    background-color: #0077b3;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #006699;
}

.btn-warning {
    background-color: #d9534f;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background: #c9302c;
}

.btn-wrapper-to-the-right-of-content {
    margin-left: 5px;
}

.btn-top-indent {
    padding-top: 6px;
}

.btn-bottom-indent {
    margin-bottom: 6px;
}