﻿/*----------------------------- Estilos para los botones -----------------------------------------*/
.button {
    border: 0 none;
    border-radius: 2px 2px 2px 2px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial,sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 0;
    padding: 7px 10px;
    text-transform: none;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    width: 10%;
    text-align: center;
    min-width: 66px;
}

.button.light {
    background: none repeat scroll 0 0 #999999;
    color: #000;
}

.button.green {
    background: none repeat scroll 0 0 #A0DB8E;
    color: #000;
    opacity: 1;
}

.button.green:hover {
    background: none repeat scroll 0 0 #6dc066;
    color: #000;
}

.button.blue {
    background: none repeat scroll 0 0 #C0D6E4;
    color: #000;
}

.button.blue:hover {
    background: none repeat scroll 0 0 #6897bb;
    color: #fff;
}

.button.red {
    background: none repeat scroll 0 0 #FF6666;
    color: #000;
}

.button.red:hover {
    background: none repeat scroll 0 0 #ff4040;
    color: #000;
}

.button.light:hover:not([disabled]){
background: none repeat scroll 0 0 #444444;
color: #fff;
}
