/* FORMULARIOS VALIDACiÓN - MENSAJES DE ERROR (JQUERY VALIDATION)*/

form label.error{                     /* texto con el error */
    /*color: red; */
    font-style: italic;
    font-size: 11px;
}

form label.error .caja_validar{               /* ho he possat jo (David) */
    margin-bottom: 5px;
    color: red;
    height: 16px;
    line-height: 16px;
    padding-left: 18px;
    background-image: url('bulletup.png');
    background-repeat: no-repeat;
    background-position-y: center;
}

form input.error, form textarea.error {    /* inputs con error */
    border: 1px solid red;
    margin-top: 5px; 
    
}


