.btnDefault {
    cursor: pointer;
    background: linear-gradient(to top, #524649, #6b5e62);
    color : #ffffff;
    border: 1px solid #594b4f;
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    /*-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 1px 2px 0 rgba(0, 0, 0, 0.15);*/
    /*box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 1px 2px 0 rgba(0, 0, 0, 0.15);*/
    background: -moz-linear-gradient(top, #524649 0%, #6b5e62 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #524649), color-stop(100%, #6b5e62)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #524649 0%, #6b5e62 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #524649 0%, #6b5e62 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #524649 0%, #6b5e62 100%); /* IE10+ */
    background: linear-gradient(to bottom, #524649 0%, #6b5e62 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#ebebeb'); /* IE6-9 */
    -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#ebebeb'); /* IE6-9 */
}


.btnDefault:link, .btnDefault:visited, .btnDefault:hover {
    color: #ffffff;
}

.btnDefault:hover, .btnDefault:focus {
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #594b4f;
}

.btnDefault:active {
    color: #fff;
    border: 1px solid #8c8282;
    -webkit-box-shadow: inset 0 2px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    filter: none;
    -ms-filter: none;
    background: #8c8282;
}

.btnDefault.disabled {
    color: #a2a2a2;
    border: 1px solid #b4b4b4;
    -ewbkit-box-shadow: none;
    box-shadow: none;
    filter: none;
    -ms-filter: none;
    background: #e6e6e6;
}

.btnDefault.disabled img {
    opacity: 0.5;
    filter: alpha(opacity=50);
}