﻿
/*tamaños botones*/

.boton_una_celda_grande {
    width: 40%;
}

.boton_una_celda {
    width: 60%;
}

.boton_fila {
    width: 20%;
}

.boton_celda_pequeña {
    width: 80%;
}

/*--------------------------------------------------------------------------------*/
/*para controles inhabilitados*/

span[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
    cursor: not-allowed !important;
    background-color: #eeeeee;
}
input[disabled]:hover {
    cursor: not-allowed !important;
    background: #EEECEC;
    color: black;
}

/*--------------------------------------------------------------------------------*/
/*boton normal*/
.boton_normal {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_normal:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_normal:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton eliminar*/
.boton_eliminar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/eliminar2.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_eliminar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #FA1515;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_eliminar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton cerrar*/
.boton_cerrar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/cerrar-01-01.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_cerrar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #FA1515;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_cerrar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton abrir*/
.boton_abrir {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/Abrir.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_abrir:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_abrir:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton enviar mensaje*/
.boton_enviar_mensaje {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/enviar_mensaje.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_enviar_mensaje:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_enviar_mensaje:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton cancelar*/
.boton_cancelar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_cancelar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #FA1515;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_cancelar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton guardar*/
.boton_guardar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/guardar.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_guardar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_guardar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*-----------------------------------------------------------------*/
/*boton buscar*/
.boton_buscar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 3px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/buscar-01.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_buscar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_buscar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*-----------------------------------------------------------------------*/
/*boton añadir,ingresar*/
.boton_anadir {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/anadir-01.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_anadir:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_anadir:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*----------------------------------------------------------------*/
/*boton editar*/
.boton_editar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/Editar2.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_editar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

.boton_editar:active {
    -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
    background: #2E5481;
    border: solid 1px #203E5F;
}

/*----------------------------------------------------------------*/
/*boton refrescar*/
.boton_refrescar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/refrescar.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_refrescar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_refrescar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*------------------------------------------------*/
/*boton cerrar/abrir*/
.boton_cerar_abrir {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/OpenClose.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_cerar_abrir:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_cerar_abrir:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*--------------------------------------------------------------------------------*/
/*boton procesar */
.boton_procesar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/Procesar.png');
    background-repeat: no-repeat;
    background-size: 34px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_procesar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_procesar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*--------------------------------------------------------------------------------*/
/*boton filtrar*/
.boton_filtrar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/addfiltrar2.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_filtrar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_filtrar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton seleccionar todo*/
.boton_seleccionar_todo {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/SelectAll.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_seleccionar_todo:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_seleccionar_todo:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/

/*boton adjuntar*/
.boton_adjuntar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/Adjuntar-01.png');
    background-repeat: no-repeat;
    background-size: 35px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_adjuntar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_adjuntar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*--------------------------------------------------------------------------------*/
/*boton excel*/
.boton_excel {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/xls-01.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_excel:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_excel:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*------------------------------------------------*/

/*boton importar*/
.boton_importar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/Import.png');
    background-repeat: no-repeat;
    background-size: 22px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_importar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_importar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*------------------------------------------------*/
/*boton pdf*/
.boton_pdf {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/pdf-01.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_pdf:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #5cb85c;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_pdf:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }
/*------------------------------------------------------*/
    /*boton limpiar*/
.boton_limpiar {
    background-position: left 10px center;
    height: 30px;
    color: black;
    font: bold 15px Arial;
    margin: 15px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: url('../AAAEstilosPropiedades/images/limpiar.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F2F2F2;
    background-attachment: scroll;
}

    .boton_limpiar:hover {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #FA1515;
        color: white;
        border: solid 1px #2A4E77;
        text-decoration: none;
        cursor: pointer;
    }

    .boton_limpiar:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*------------------------------------------------*/
/*Inicio Estilo Para el RadioButon*/

.Buttons label {
    display: block;
    border: solid 1px gray;
    box-shadow: 2px 2px 2px gray;
    padding: 5px 10px;
    /*background-color: #28477D; */
    color: #28477D;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
}

input[type="radio"] {
    display: none;
}

input:checked + label {
    background-color: #A9A9A9;
    color: White;
}

/*Fin Estilo RadioButon*/
/*------------------------------------------------*/

/* custom checkbox */
.checkbox {
    display: block;
    position: relative;
    /*padding-left: 35px;*/
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* hide the browser's default checkbox */
    .checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* create custom checkbox */
.check {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #ccc;
}

/* on mouse-over, add border color */
.checkbox:hover input ~ .check {
    border: 2px solid #2489C5;
}

/* add background color when the checkbox is checked */
.checkbox input:checked ~ .check {
    background-color: #2489C5;
    border: none;
}

/* create the checkmark and hide when not checked */
.check:after {
    content: "";
    position: absolute;
    display: none;
}

/* show the checkmark when checked */
.checkbox input:checked ~ .check:after {
    display: block;
}

/* checkmark style */
.checkbox .check:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*------------------------------------------------*/
/*botones gridview*/
.button_grvVerde {
    text-shadow: 0px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    display: inline-block;
    color: black;
    background: #90EE90;
    /*padding: 6px 30px;*/
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.button_grvRojo {
    text-shadow: 0px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    display: inline-block;
    color: black;
    background: #E9967A;
    /*padding: 6px 30px;*/
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.button_grvAzul {
    text-shadow: 0px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    display: inline-block;
    color: black;
    background: #87CEFA;
    /*padding: 6px 30px;*/
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.button {
    border: none;
    background: #87CEFA;
    color: Black;
    padding: 2px;
    font-size: 12px;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    transition: all 500ms ease;
}

.button:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    transition: all 2s ease;
}

.button:hover:before {
    height: 42px;
}

.button:hover {
    background: rgba(0,0,0,0);
    color: #3a7999;
    box-shadow: inset 0 0 0 3px #3a7999;
}

.boton_gridview {
    padding: 5px 10px;
    background: #F2F2F2;
    color: black;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: left;
}

    .boton_gridview:hover {
        background: #C2CBD4;
        border: solid 1px #2A4E77;
        text-decoration: none;
    }

    .boton_gridview:active {
        -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
        -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
        background: #2E5481;
        border: solid 1px #203E5F;
    }

/*fin botones gridview*/



