/* ------------------------------------------------------------------------------------------------------------- BUTTON */
.btns{
    overflow: hidden;
    margin: 6px 0;
}
.btn {
    position: relative;
    overflow: visible;
    display: inline-block;
    padding: 0.5em 1em;
    border: 1px solid #d4d4d4;
    margin: 0;
    text-decoration: none;
    text-shadow: 1px 1px 0 #fff;
    font:11px/normal sans-serif;
    color: #333;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    background-color: #ececec;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
    background-image: -moz-linear-gradient(#f4f4f4, #ececec);
    background-image: -o-linear-gradient(#f4f4f4, #ececec);
    background-image: linear-gradient(#f4f4f4, #ececec);
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    -o-background-clip: padding-box;
    /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    border-radius: 0.2em;
    /* IE hacks */
    zoom: 1;
    *display: inline;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    border-color: #3072b3;
    border-bottom-color: #2a65a0;
    text-decoration: none;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
    color: #fff;
    background-color: #3C8DDE;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
    background-image: -moz-linear-gradient(#599bdc, #3072b3);
    background-image: -o-linear-gradient(#599bdc, #3072b3);
    background-image: linear-gradient(#599bdc, #3072b3);
}

.btn:active,
.btn.active {
    border-color: #2a65a0;
    border-bottom-color: #3884CF;
    background-color: #3072b3;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3072b3), to(#599bdc));
    background-image: -moz-linear-gradient(#3072b3, #599bdc);
    background-image: -o-linear-gradient(#3072b3, #599bdc);
    background-image: linear-gradient(#3072b3, #599bdc);
}

/* overrides extra padding on button elements in Firefox */
.btn::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.btn.right{
    float: right;
}

.wrpSubtmit.right{
    text-align: right;
}


.btn-group {
    display: inline-block;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
.btn-group > .btn:first-child,
.btn-group li:first-child .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-left: 0;
}
.btn-group .btn {
    float: left;
    margin-left: -1px;
}



a.excel{
    background: url("../images/icon-excel.png") no-repeat scroll 0 0 transparent;
    color: #203952;
    float: right;
    font-weight: bold;
    line-height: 17px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding-left: 20px;
}

a.html{
    background: url("../images/icon-html.gif") no-repeat scroll 0 0 transparent;
    color: #203952;
    float: right;
    font-weight: bold;
    line-height: 17px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding-left: 24px;
}

a.cron{
    background: url("../images/icons/maintenance_cron_time_icon.jpg") no-repeat scroll 0 0 transparent;
    color: #203952;
    float: right;
    font-weight: bold;
    line-height: 11px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding-left: 24px;
}
a.cron.loading{
    background: url("../images/icons/ajax-loader.gif") no-repeat scroll 0 0 transparent;
    color: #999;
}
a.cron.loading:hover{
    text-decoration: none !important;
}


a.excel:hover,
a.html:hover,
a.cron:hover{
    text-decoration: underline;
}



