/* 
    Document   : buttons
    Created on : Aug 30, 2010, 12:43:12 PM
    Author     : sebastiaan
    Description:
        Buttons styling
*/

div.disabled a, div.disabled a:hover {
    color:#CCCCCC !important;
}
button:disabled {
    color:#CCCCCC !important;
}

button:disabled img, div.disabled img {
    visibility: hidden;
}
.buttons a, .buttons button{
    margin:0 0 0 0;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;

    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    font-size:100%;
    line-height:130%;
    text-decoration:none !important;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}
.buttons button{
    width:auto;
    overflow:visible;
    padding:4px 10px 3px 7px; /* IE6 */
}
.buttons button[type]{
    padding:5px 10px 5px 7px; /* Firefox */
    line-height:17px; /* Safari */
}
*:first-child+html button[type]{
    padding:4px 10px 3px 7px; /* IE7 */
}
.buttons button img, .buttons a img{
    margin:0 3px -3px 0 !important;
    padding:0;
    border:none;
    width:12px;
    height:12px;
}

button:hover:not([disabled]), .buttons a:hover:not([disabled]) {
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.buttons a:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/** SMALL BTN **/
.smallButton {
    margin-left: 5px !important;
    line-height: 10px !important;
    font-size:10px !important;
    height:24px;
}
/** CALL 2 ACTION **/
button.call2action {
/**
    color:#d12f19;
    background-color:#f5f5f5;
    border:2px solid #dedede;
    border-top:2px solid #eee;
    border-left:2px solid #eee;
**/
    color:#4f679d;
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    padding: .5em 2em .55em;
    -webkit-border-radius: .5em; 
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    border:1px #b1cfed solid;
    background: #cedee9;
    background: -webkit-gradient(linear, left top, left bottom, from(#cedee9), to(#b5e1fe));
    background: -moz-linear-gradient(top,  #cedee9,  #b5e1fe);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cedee9', endColorstr='#b5e1fe');
    
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;    
}
button.call2action:hover{
    /*
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
    */
    background:#b5e1fe;
    /*background:#deedf7;*/
    border:1px solid #4f679d;
    /*Transition*/
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;    
}

/* POSITIVE */
button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover:not([disabled]), button.positive:hover:not([disabled]) {
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
button.highlight:not([disabled]) {
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}

.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}

.buttons .positive_active {
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}


/* NEGATIVE */

.buttons a.negative, button.negative{
    color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}
.buttons a {
    font-size:11px;
}
/* modal popup */
#modal_popup .buttons  button {
    font-size:80%;
    border:1px solid #536376;
}
#modal_popup .buttons  a {
    font-size:80%;
    border:1px solid #536376;
}