
/*******************************************
                BUTTONS
*******************************************/

.cBtn{
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    cursor: pointer;
    height: 17px;
    padding: 4px;
}

.cBtn:hover{
    border: 1px dashed #333;
}

.btn{
    /*height: 26px;*/
    top: -1px;
    position: relative;
    /*display: inline-block;*/
    padding: 4px 6px 4px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 15px;
    color: #333333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-bottom-color: #b3b3b3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}


.btn:hover:not([disabled]) {
    /*color: #333333;*/
    text-decoration: none;
    background-color: #e6e6e6;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -ms-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.btn.blue {
    text-shadow: 0px -1px 0px #004f6f;
    color: #fff;
    background-color: #006d8d;
    background-image: -moz-linear-gradient(top, #1e8bab, #004f6f);
    background-image: -ms-linear-gradient(top, #1e8bab, #004f6f);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1e8bab), to(#004f6f));
    background-image: -webkit-linear-gradient(top, #1e8bab, #004f6f);
    background-image: -o-linear-gradient(top, #1e8bab, #004f6f);
    background-image: linear-gradient(top, #1e8bab, #004f6f);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#1e8bab', endColorstr = '#004f6f', GradientType = 0);
    border-color: #006D8D #004f6f #004f6f #006D8D;
    border-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.25);
}

.btn.blue:hover{
    background-color: #004f6f
}


.btn.red {
    text-shadow: 0 -1px 0 #FF0000;
    /*004f6f*/
    color: #fff;
    background-color: #006d8d;
    background-image: -moz-linear-gradient(top, #a26f09, #FF0000);
    background-image: -ms-linear-gradient(top, #a26f09, #FF0000);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#a26f09), to(#FF0000));
    background-image: -webkit-linear-gradient(top, #a26f09, #FF0000);
    background-image: -o-linear-gradient(top, #a26f09, #FF0000);
    background-image: linear-gradient(top, #a26f09, #FF0000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#a26f09', endColorstr = '#FF0000', GradientType = 0);
    border-color: #006D8D #FF0000 #FF0000 #006D8D;
    border-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.25);
}

.btn.red:hover{
    background-color: #FF0000
}



/**
 * Blink red
 */
.blinkRed {
    -webkit-animation-name: blinkerRed;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinkerRed;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinkerRed;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    /* border-radius */
    border-color:red;

    /* box-shadow */
    -webkit-box-shadow: rgba(255, 0, 0, 0.8) 0 0 8px;
    -moz-box-shadow: rgba(255, 0, 0, 0.8) 0 0 8px;
    box-shadow: rgba(255, 0, 0, 0.8) 0 0 8px;
}

@-moz-keyframes blinkerRed {
    0% { opacity: 1.0; }
    50% { opacity: 0.2; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinkerRed {
    0% { opacity: 1.0; }
    50% { opacity: 0.2; }
    100% { opacity: 1.0; }
}

@keyframes blinkerRed {
    0% { opacity: 1.0; }
    50% { opacity: 0.2; }
    100% { opacity: 1.0; }
}