<?xml version="1.0"?>
<rss version="2.0"><channel><title>Baleares - Sanidad</title><description>Baleares - Sanidad</description><language>es</language><link>https://www.csif.es/es/portada/balearessanidad/categoria/ultimasnoticias</link><lastBuildDate>Fri, 17 Apr 26 06:31:12 CEST</lastBuildDate><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/81681</guid><title>CALCULA TU SUBIDA DE SALARIO</title><pubDate>Sun, 30 Nov 25 19:40:00 CET</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/81681</link><dc:creator xmlns:dc="dc">sofia.porrero.de-prado</dc:creator><dcterms:alternative xmlns:dcterms="dcterms"/><description/><category>Negociaciones y acuerdos</category><category>&#xDA;ltimas noticias</category><media:content xmlns:media="media" url="https://www.csif.es/uploads/articulo/imagenPrincipal/sin-titulo-sitio-web-1764504168.png" type="image/png" medium="image"><media:credit/><media:title>Baleares - Sanidad Image</media:title><media:text/><media:description/></media:content><content:encoded xmlns:content="content">&lt;meta charset="UTF-8"&gt;&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;&#xD;
&lt;title&gt;&lt;/title&gt;&#xD;
&lt;!-- Bootstrap 5 CSS (Simulando lo que ya tiene tu web) --&gt;&#xD;
&lt;link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" /&gt;&lt;!-- FontAwesome (Simulando tu web) --&gt;&#xD;
&lt;link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet" /&gt;&#xD;
&lt;style type="text/css"&gt;/* Estilos espec&#xED;ficos m&#xED;nimos para la calculadora */&#xD;
        .calculator-card {&#xD;
            border: none;&#xD;
            border-radius: 1rem;&#xD;
            /* Sombra suave similar a la original */&#xD;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);&#xD;
        }&#xD;
&#xD;
        .input-salary {&#xD;
            font-size: 1.25rem;&#xD;
            padding: 0.75rem;&#xD;
            background-color: #f9fafb;&#xD;
        }&#xD;
&#xD;
        /* Quitar flechas del input number */&#xD;
        .no-spinners::-webkit-outer-spin-button,&#xD;
        .no-spinners::-webkit-inner-spin-button {&#xD;
            -webkit-appearance: none;&#xD;
            margin: 0;&#xD;
        }&#xD;
        .no-spinners {&#xD;
            -moz-appearance: textfield;&#xD;
        }&#xD;
&#xD;
        /* Animaci&#xF3;n de aparici&#xF3;n */&#xD;
        .fade-in-up {&#xD;
            animation: fadeInUp 0.5s ease-out forwards;&#xD;
            opacity: 0;&#xD;
            transform: translateY(20px);&#xD;
        }&#xD;
&#xD;
        @keyframes fadeInUp {&#xD;
            to { opacity: 1; transform: translateY(0); }&#xD;
        }&#xD;
&#xD;
        /* Colores de borde personalizados para replicar el dise&#xF1;o original */&#xD;
        .border-left-success { border-left: 5px solid #198754 !important; }&#xD;
        .border-left-primary { border-left: 5px solid #0d6efd !important; }&#xD;
        .border-left-info { border-left: 5px solid #0dcaf0 !important; }&#xD;
        .border-left-warning { border-left: 5px solid #ffc107 !important; }&#xD;
        .border-left-danger { border-left: 5px solid #dc3545 !important; }&#xD;
        .border-left-dark { border-left: 5px solid #212529 !important; }&#xD;
&#xD;
        .result-card {&#xD;
            background-color: white;&#xD;
            border-radius: 0.5rem;&#xD;
            padding: 1rem;&#xD;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);&#xD;
        }&#xD;
&lt;/style&gt;&#xD;
&lt;!-- INICIO DEL WIDGET (Copiar desde aqu&#xED; para el CMS) --&gt;&#xD;
&lt;div class="container"&gt;&#xD;
&lt;div class="row justify-content-center"&gt;&#xD;
&lt;div class="col-12 col-md-8 col-lg-6"&gt;&#xD;
&lt;div class="card calculator-card bg-white overflow-hidden"&gt;&lt;!-- Cabecera --&gt;&#xD;
&lt;div class="card-header bg-white border-bottom p-4 text-center"&gt;&#xD;
&lt;h1 class="h3 fw-bold text-success text-uppercase mb-0"&gt;Calcula cu&amp;aacute;nto aumentar&amp;aacute; tu sueldo&lt;/h1&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;!-- Cuerpo --&gt;&#xD;
&#xD;
&lt;div class="card-body p-4 p-md-5"&gt;&lt;!-- Formulario --&gt;&#xD;
&lt;div class="mb-4"&gt;&lt;label class="form-label fw-bold text-secondary" for="currentSalary"&gt;Introduce tu sueldo actual (mensual)&lt;/label&gt;&#xD;
&#xD;
&lt;div class="input-group input-group-lg shadow-sm"&gt;&lt;span class="input-group-text bg-white text-muted border-end-0"&gt;&amp;euro;&lt;/span&gt; &lt;input class="form-control border-start-0 no-spinners input-salary" id="currentSalary" placeholder="0.00" step="0.01" type="number" /&gt;&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;button class="btn btn-success btn-lg w-100 text-uppercase fw-bold py-3 shadow-sm hover-scale" id="btnCalculate"&gt;Calcular Subida&lt;/button&gt;&lt;!-- Secci&#xF3;n de Resultados --&gt;&#xD;
&#xD;
&lt;div class="mt-5 d-none" id="resultsSection"&gt;&#xD;
&lt;h5 class="text-muted mb-3 small text-uppercase fw-bold border-bottom pb-2"&gt;Resultados Estimados&lt;/h5&gt;&#xD;
&#xD;
&lt;div class="d-grid gap-3" id="resultsContainer"&gt;&lt;!-- Los resultados se inyectan aqu&#xED; v&#xED;a JS --&gt;&lt;/div&gt;&#xD;
&lt;!-- Aviso Legal --&gt;&#xD;
&#xD;
&lt;div class="alert alert-warning mt-4 mb-0 small fst-italic shadow-sm border-0 d-flex align-items-start fade-in-up" style="animation-delay: 0.8s;"&gt;&#xD;
&lt;div&gt;&lt;strong&gt;AVISO IMPORTANTE:&lt;/strong&gt; Los siguientes resultados son orientativos y estar&amp;aacute;n afectados en su caso a las posibles modificaciones de retenciones y a las circunstancias familiares y personales de cada trabajador o trabajadora.&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;script&gt;&#xD;
        document.addEventListener('DOMContentLoaded', function() {&#xD;
            &#xD;
            // --- CONFIGURACI&#xD3;N DE TASAS (F&#xE1;cil de actualizar el pr&#xF3;ximo a&#xF1;o) ---&#xD;
            const RATES = {&#xD;
                raise2025: 1.025,       // Subida 2025 (+2.5%)&#xD;
                arrears2025: 0.025,     // Atrasos factor&#xD;
                raise2026: 1.015,       // Subida 2026 (+1.5%)&#xD;
                raise2027: 1.045,       // Subida 2027 (+4.5%) - Nota: f&#xF3;rmula original usa 1.045 directo&#xD;
                inflationTrigger: 1.005, // Extra inflaci&#xF3;n 0.5%&#xD;
                arrearsTrigger: 0.005,   // Extra atrasos 0.5%&#xD;
                // Factores espec&#xED;ficos para el c&#xE1;lculo complejo de 2028 seg&#xFA;n l&#xF3;gica original&#xD;
                raise2028_step1: 1.02,   &#xD;
                raise2028_final: 1.02&#xD;
            };&#xD;
&#xD;
            // Elementos del DOM&#xD;
            const btn = document.getElementById('btnCalculate');&#xD;
            const input = document.getElementById('currentSalary');&#xD;
            const resultsSection = document.getElementById('resultsSection');&#xD;
            const resultsContainer = document.getElementById('resultsContainer');&#xD;
&#xD;
            // Formateador de moneda Euro&#xD;
            const euroFormatter = new Intl.NumberFormat('es-ES', {&#xD;
                style: 'currency',&#xD;
                currency: 'EUR',&#xD;
                minimumFractionDigits: 2&#xD;
            });&#xD;
&#xD;
            // Funci&#xF3;n para generar HTML de una tarjeta de resultado&#xD;
            function getResultHTML(title, value, borderClass, delay) {&#xD;
                return `&#xD;
                    &lt;div class="result-card border-left-${borderClass} fade-in-up" style="animation-delay: ${delay}s;"&gt;&#xD;
                        &lt;div class="small text-uppercase fw-bold text-muted mb-1"&gt;${title}&lt;/div&gt;&#xD;
                        &lt;div class="h3 fw-bold text-dark mb-0"&gt;${euroFormatter.format(value)}&lt;/div&gt;&#xD;
                    &lt;/div&gt;&#xD;
                `;&#xD;
            }&#xD;
&#xD;
            // L&#xF3;gica principal&#xD;
            btn.addEventListener('click', function() {&#xD;
                const salary = parseFloat(input.value);&#xD;
&#xD;
                if (isNaN(salary) || salary &lt;= 0) {&#xD;
                    alert("Por favor, introduce una cifra de sueldo v&#xE1;lida.");&#xD;
                    return;&#xD;
                }&#xD;
&#xD;
                // --- C&#xC1;LCULOS MATEM&#xC1;TICOS ---&#xD;
                &#xD;
                // 1. Subida 2025&#xD;
                const calc0 = salary * RATES.raise2025;&#xD;
&#xD;
                // 2. Atrasos 2025 (14 pagas)&#xD;
                const calc1 = salary * RATES.arrears2025 * 14;&#xD;
&#xD;
                // 3. Sueldo 2026&#xD;
                const salaryWithFirstRaise = salary * RATES.raise2025;&#xD;
                const calc2 = salaryWithFirstRaise * RATES.raise2026;&#xD;
&#xD;
                // 4. Sueldo 2027&#xD;
                const calc3 = calc2 * RATES.raise2027;&#xD;
&#xD;
                // 5. Extra Inflaci&#xF3;n 2027 (Condicional)&#xD;
                const calc3_extra = calc2 * RATES.inflationTrigger * RATES.raise2027;&#xD;
&#xD;
                // 6. Atrasos 2026 (Condicional)&#xD;
                const calc3_arrears = (calc2 * RATES.arrearsTrigger) * 14;&#xD;
&#xD;
                // 7. Sueldo 2028 (L&#xF3;gica condicional compleja original)&#xD;
                // (cifra inicial * 1,025) * 1,02 * 1,045 * 1,02&#xD;
                const step1 = salary * RATES.raise2025;&#xD;
                const step2 = step1 * RATES.raise2028_step1;&#xD;
                const step3 = step2 * RATES.raise2027;&#xD;
                const calc5 = step3 * RATES.raise2028_final;&#xD;
&#xD;
                // 8. Incremento Acumulado&#xD;
                const calc6 = calc5 - salary;&#xD;
&#xD;
&#xD;
                // --- RENDERIZADO ---&#xD;
                &#xD;
                // Limpiamos resultados previos&#xD;
                resultsContainer.innerHTML = '';&#xD;
                &#xD;
                let html = '';&#xD;
                &#xD;
                // Construimos el HTML din&#xE1;micamente&#xD;
                html += getResultHTML('Subida de sueldo para 2025 (+2,5%)', calc0, 'success', 0.1);&#xD;
                html += getResultHTML('Atrasos de la subida del a&#xF1;o 2025 (+2,5%)', calc1, 'success', 0.2);&#xD;
                html += getResultHTML('Subida de Sueldo para 2026 (+1,5%)', calc2, 'primary', 0.3);&#xD;
                html += getResultHTML('Subida de Sueldo para 2027 (+4,5%)', calc3, 'info', 0.4);&#xD;
                &#xD;
                // Extras condicionales&#xD;
                html += getResultHTML('Subida 2027 si la inflaci&#xF3;n en 2026 el igual o superior a 1,5%', calc3_extra, 'info', 0.5);&#xD;
                html += getResultHTML('Atrasos de 2026 si la inflaci&#xF3;n es igual o superior a 1,5% (a cobrar en el primer trimestre de 2027)', calc3_arrears, 'info', 0.6);&#xD;
                &#xD;
                // Finales&#xD;
                html += getResultHTML('Subida de Sueldo para 2028 (+2%)', calc5, 'warning', 0.7);&#xD;
                html += getResultHTML('Incremento Acumulado (2025-2028)', calc6, 'danger', 0.8);&#xD;
&#xD;
                resultsContainer.innerHTML = html;&#xD;
&#xD;
                // Mostrar resultados&#xD;
                resultsSection.classList.remove('d-none');&#xD;
                resultsSection.scrollIntoView({ behavior: 'smooth', block: 'nearest' });&#xD;
            });&#xD;
        });&#xD;
    &lt;/script&gt;&lt;!-- FIN DEL WIDGET --&gt;</content:encoded></item><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/76744</guid><title>Reuni&#xF3;n de CSIF Illes Balears con la consejera de Trabajo, Funci&#xF3;n P&#xFA;blica y Di&#xE1;logo Social, Catalina Cabrer</title><pubDate>Thu, 04 Sep 25 21:14:00 CEST</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/76744</link><dc:creator xmlns:dc="dc">elena-luisa.serra.gutierrez</dc:creator><dcterms:alternative xmlns:dcterms="dcterms"/><description/><category>&#xDA;ltimas noticias</category><category>CSIF Informa</category><media:content xmlns:media="media" url="https://www.csif.es/uploads/articulo/imagenPrincipal/whatsapp-image-2025-09-04-at-15-18-28-1757013434.jpg" type="image/jpeg" medium="image"><media:credit/><media:title>Baleares - Sanidad Image</media:title><media:text/><media:description/></media:content><content:encoded xmlns:content="content">&lt;p&gt;&lt;span style="font-size:16px;"&gt;El presidente de CSIF Illes Balears, Luis Apolinar, se ha reunido este jueves con la consejera de Trabajo, Funci&amp;oacute;n P&amp;uacute;blica y Di&amp;aacute;logo Social, Catalina Cabrer y el Director General de Funci&amp;oacute;n P&amp;uacute;blica, Antoni Mesquida. En la reuni&amp;oacute;n tambi&amp;eacute;n han participado el presidente regional del Sector de Educaci&amp;oacute;n del sindicato, Ram&amp;oacute;n Seisdedos, la presidenta regional del Sector de Sanidad, Mar&amp;iacute;a Luisa Garc&amp;iacute;a, y el responsable de CSIF Serveis Generals CAIB, Jaime L&amp;oacute;pez. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;span style="font-size:16px;"&gt;Durante el encuentro, Luis Apolinar ha instado a la consejera Catalina Cabrer a aplicar el Pacto de legislatura, firmado el pasado mes de abril, y que prev&amp;eacute; el incremento del plus de insularidad, el abono del 100% de la retribuci&amp;oacute;n en situaci&amp;oacute;n de IT, la convocatoria anual de la carrera profesional y la modificaci&amp;oacute;n de la Ley de Funci&amp;oacute;n P&amp;uacute;blica, entre otras mejoras de las condiciones laborales de los empleados p&amp;uacute;blicos de la comunidad. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;span style="font-size:16px;"&gt;En materia de Educaci&amp;oacute;n, Ram&amp;oacute;n Seisdedos ha puesto de relieve la dificultad de cubrir vacantes de personal docente en Baleares, y la necesidad de tomar medidas de forma urgente para paliar esta situaci&amp;oacute;n. As&amp;iacute; mismo, CSIF urge a la consejer&amp;iacute;a a cumplir los acuerdos adoptados para mejorar las condiciones laborales del personal auxiliar t&amp;eacute;cnico educativo, adem&amp;aacute;s de poner en valor y reconocer las funciones indispensables que llevan a cabo estos/as profesionales. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;span style="font-size:16px;"&gt;Por su parte, la presidenta regional del Sector de Sanidad de CSIF, Mar&amp;iacute;a Luisa Garc&amp;iacute;a, ha instado a la consejera Catalina Cabrer a cumplir los acuerdos que se han negociado en el &amp;aacute;mbito auton&amp;oacute;mico para mejorar las retribuciones y condiciones laborales del personal del servicio de salud, y ha expuesto la situaci&amp;oacute;n de la negociaci&amp;oacute;n del Estatuto Marco que se est&amp;aacute; llevando a cabo en el &amp;aacute;mbito estatal. En este sentido, Mal&amp;uacute; Garc&amp;iacute;a ha expresado su preocupaci&amp;oacute;n por la posici&amp;oacute;n adoptada por el Ministerio de Sanidad, que parece querer &amp;ldquo;forzar una ruptura&amp;rdquo; de las negociaciones cuando a&amp;uacute;n quedan asuntos muy importantes que acordar, como el reconocimiento retributivo que corresponde al nuevo modelo de clasificaci&amp;oacute;n profesional y el acceso a la jubilaci&amp;oacute;n voluntaria, ya sea anticipada o parcial. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;span style="font-size:16px;"&gt;Durante la reuni&amp;oacute;n, tambi&amp;eacute;n se ha analizado la situaci&amp;oacute;n del empleo p&amp;uacute;blico en el &amp;aacute;mbito de servicios generales de la CAIB. En este sentido, Jaime L&amp;oacute;pez ha trasladado a la consejera Catalina Cabrer las principales inquietudes del colectivo y ha recordado la necesidad de mantener el concurso de traslados abierto y permanente, para facilitar la movilidad y promoci&amp;oacute;n de los/as profesionales de los servicios p&amp;uacute;blicos de la comunidad.&lt;/span&gt;&lt;/p&gt;</content:encoded></item><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/76614</guid><title>N&#xF3;mina de septiembre: abono del 65 % de los atrasos e intereses en ejecuci&#xF3;n de sentencia por los recortes de 2020 y 2021</title><pubDate>Wed, 03 Sep 25 07:26:00 CEST</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/76614</link><dc:creator xmlns:dc="dc">elena-luisa.serra.gutierrez</dc:creator><dcterms:alternative xmlns:dcterms="dcterms"/><description/><category>&#xDA;ltimas noticias</category><category>CSIF Informa</category><media:content xmlns:media="media" url="https://www.csif.es/uploads/articulo/imagenPrincipal/copia-de-copia-de-recuperacio-retribucions-4-1756877554.jpg" type="image/jpeg" medium="image"><media:credit/><media:title>Baleares - Sanidad Image</media:title><media:text/><media:description/></media:content><content:encoded xmlns:content="content">&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;En relaci&amp;oacute;n con el pago del 65&amp;nbsp;% de los atrasos y de los intereses correspondientes a los recortes salariales de 2020 y 2021, derivado de la ejecuci&amp;oacute;n de la Sentencia n&amp;uacute;m. 333/2024 de la Sala de lo Contencioso-Administrativo del Tribunal Superior de Justicia de las Islas Baleares, el Servicio de Salud ha informado que las cuant&amp;iacute;as correspondientes se abonar&amp;aacute;n de la manera siguiente:&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;i&gt;a) &lt;/i&gt;&lt;/b&gt;&lt;b&gt;Profesionales del Servicio de Salud en la situaci&amp;oacute;n de servicio activo en el mes de septiembre de 2025: &lt;/b&gt;el pago se har&amp;aacute; con la n&amp;oacute;mina del mes de septiembre de 2025 y los intereses correspondientes tambi&amp;eacute;n se abonar&amp;aacute;n en la misma transferencia y se har&amp;aacute;n constar en el recibo de la n&amp;oacute;mina de forma desglosada.&amp;nbsp;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;i&gt;b) &lt;/i&gt;&lt;/b&gt;&lt;b&gt;Profesionales del Servicio de Salud que no est&amp;eacute;n en la situaci&amp;oacute;n de servicio activo en el mes septiembre de 2025: &lt;/b&gt;el pago se har&amp;aacute; igualmente en el mes de septiembre por medio de una transferencia a la cuenta bancaria que figure en el sistema de gesti&amp;oacute;n de las n&amp;oacute;minas.&amp;nbsp; El personal afectado puede comprobar el n&amp;uacute;mero de cuenta bancaria que consta en el Servicio de Salud o, &lt;b&gt;en su caso, deben indicar antes del 15 de septiembre de 2025&lt;/b&gt; el IBAN de otra cuenta para poder hacer la transferencia. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;Consulta de los datos bancarios registrados&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;Por medio del&lt;a href="https://portalgid.ssib.es/PortalGID/?lang=es"&gt;&amp;nbsp;&lt;/a&gt;&lt;/b&gt;&lt;a href="https://portalgid.ssib.es/PortalGID/?lang=es"&gt;&lt;b&gt;Portal de autogesti&amp;oacute;n&lt;/b&gt;&lt;/a&gt;&lt;b&gt;&lt;a href="https://portalgid.ssib.es/PortalGID/?lang=es"&gt;&amp;nbsp;&lt;/a&gt;&amp;gt; Datos de usuario&lt;/b&gt;, se podr&amp;aacute; visualizar el n&amp;uacute;mero de la cuenta bancaria (IBAN) que figura actualmente en el sistema de gesti&amp;oacute;n de las n&amp;oacute;minas:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;ul&gt;&#xD;
	&lt;li style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="tab-stops:list 36.0pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Los profesionales en activo pueden acceder a los datos autentic&amp;aacute;ndose con su usuario S y la contrase&amp;ntilde;a correspondiente, con Cl@ve o el certificado centralizado.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;ul&gt;&#xD;
	&lt;li style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="tab-stops:list 36.0pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;En cambio, los profesionales que ya no est&amp;aacute;n en activo solo pueden autenticarse con Cl@ve (Cl@ve M&amp;oacute;vil, Cl@ve Permanente, DNIe, certificado electr&amp;oacute;nico o certificados de la Uni&amp;oacute;n Europea).&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;Si los datos bancarios son correctos, no es necesario hacer ninguna acci&amp;oacute;n adicional&lt;/b&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Si los datos que figuran no son los de la cuenta bancaria actual del interesado, tiene que actualizarlos siguiendo el procedimiento siguiente.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;Tr&amp;aacute;mite de actualizaci&amp;oacute;n de los datos bancarios&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;Antes del 15 de septiembre de 2025&lt;/b&gt;, es necesario cumplimentar y presentar en un registro el&amp;nbsp;&lt;a href="https://www.caib.es/seucaib/es/201/empresas/tramites/servicio/4486284/" style="color:#0563c1; text-decoration:underline" target="_blank"&gt;formulario de declaraci&amp;oacute;n de veracidad de datos bancarios&lt;/a&gt;&lt;a href="https://www.caib.es/seucaib/es/201/empresas/tramites/servicio/4486284/"&gt;.&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Tanto la comprobaci&amp;oacute;n de los datos bancarios como el tr&amp;aacute;mite para notificar un cambio de cuenta pueden consultarse clicando &lt;u&gt;&lt;a href="https://www.ibsalut.es//es/profesionales/recursos-humanos/4533-verificar-y-actualizar-datos-bancarios"&gt;aqu&amp;iacute;&lt;/a&gt;&lt;/u&gt;.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-left:48px; margin-bottom:11px"&gt;&amp;nbsp;&lt;/p&gt;</content:encoded></item><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/70739</guid><title>Nuevo procedimiento especial de selecci&#xF3;n de especialistas en medicina familiar y comunitaria que finalizan su residencia</title><pubDate>Fri, 09 May 25 16:20:00 CEST</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/70739</link><dc:creator xmlns:dc="dc">elena-luisa.serra.gutierrez</dc:creator><dcterms:alternative xmlns:dcterms="dcterms">La Mesa Sectorial de Sanidad ha aprobado por unanimidad un nuevo mecanismo para fidelizar y atraer residentes de medicina familiar y comunitaria que finalizan su formaci&#xF3;n especializada durante 2025...</dcterms:alternative><description>La Mesa Sectorial de Sanidad ha aprobado por unanimidad un nuevo mecanismo para fidelizar y atraer residentes de medicina familiar y comunitaria que finalizan su formaci&#xF3;n especializada durante 2025...</description><category>Convocatorias</category><category>Empleo</category><category>Negociaciones y acuerdos</category><category>&#xDA;ltimas noticias</category><media:content xmlns:media="media" url="https://www.csif.es/uploads/articulo/imagenPrincipal/procedimiento-especial-de-seleccion-ia-2-1746804444.jpg" type="image/jpeg" medium="image"><media:credit/><media:title>Baleares - Sanidad Image</media:title><media:text/><media:description/></media:content><content:encoded xmlns:content="content">&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:14px;"&gt;La Mesa Sectorial de Sanidad, reunida este viernes 9 de mayo, ha&amp;nbsp;aprobado por unanimidad un nuevo procedimiento especial de selecci&amp;oacute;n de&lt;/span&gt;&lt;span style="font-size:12pt"&gt;&lt;span style="background:white"&gt;&lt;span style="font-family:&amp;quot;Times New Roman&amp;quot;,serif"&gt;&lt;b&gt;&lt;span style="font-size:11.0pt"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;&lt;span style="color:black"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:11.0pt"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;&lt;span style="color:black"&gt;personal estatutario temporal de la categor&amp;iacute;a m&amp;eacute;dico/m&amp;eacute;dica de familia en equipos de atenci&amp;oacute;n primaria&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:14px;"&gt;&amp;nbsp;con el objetivo de fidelizar profesionales que finalizan su formaci&amp;oacute;n especializada durante el 2025. En este sentido, para dar la m&amp;aacute;xima estabilidad a los profesionales, se expedir&amp;aacute;n interinidades en plazas vacantes y nombramientos de larga duraci&amp;oacute;n.&amp;nbsp;&lt;br /&gt;&#xD;
Aunque es requisito tener la especialidad, pueden participar &lt;strong&gt;los candidatos que est&amp;eacute;n cursando el 4.&amp;ordm; a&amp;ntilde;o de formaci&amp;oacute;n especializada, aportando el t&amp;iacute;tulo en el momento de la formalizaci&amp;oacute;n del nombramiento.&lt;/strong&gt; Adem&amp;aacute;s, por primera vez, no se requiere que los aspirantes tengan la nacionalidad espa&amp;ntilde;ola.&amp;nbsp;&lt;br /&gt;&#xD;
Se valorar&amp;aacute; la competencia y el desempe&amp;ntilde;o de los candidatos. Por eso, el baremo de m&amp;eacute;rito da un peso muy importante a las calificaciones de los aspirantes: el &lt;strong&gt;orden de prelaci&amp;oacute;n de la prueba MIR (hasta 40 puntos)y&amp;nbsp; las notas de R1 hasta R3 (hasta 45 puntos).&lt;/strong&gt; &lt;strong&gt;Haber hecho la residencia en las Islas Baleares tambi&amp;eacute;n tiene un peso importante de cara a fidelizar a los especialistas formados en nuestro sistema (10 puntos), &lt;/strong&gt;como puede observarse en la tabla de baremaci&amp;oacute;n.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:14px;"&gt;Este procedimiento de selecci&amp;oacute;n se aplicar&amp;agrave; a las plazas que no han sido previamente cubiertas por las bolsas. &lt;strong&gt;E&lt;/strong&gt;&lt;strong&gt;n la convocatoria de 2025 se ofertar&amp;aacute;n m&amp;aacute;s de 100 plazas mediante este mecanismo.&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:14px;"&gt;Puedes consultar la tabla completa de baremaci&amp;oacute;n en el documento adjunto. Ante cualquier duda, no dudes en contactar con tu delegado/a sindical de CSIF Sanidad.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;table align="left" class="Table" style="width:96.1%; border-collapse:collapse; margin-left:6px; margin-right:6px" width="96%"&gt;&#xD;
	&lt;tbody&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:65px; background-color:#8db4e2; border-top:1px solid #0070c0; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;Valoraci&amp;oacute;n del resultado de la prueba selectiva MIR (m&amp;aacute;ximo, 40 puntos*)&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Vea la aclaraci&amp;oacute;n &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:28px; background-color:#8db4e2; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;Evaluaci&amp;oacute;n del per&amp;iacute;odo de formaci&amp;oacute;n por el sistema de residencia (m&amp;aacute;ximo, 45 puntos)&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:68px; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;En atenci&amp;oacute;n a la evaluaci&amp;oacute;n final cuantitativa obtenida durante el per&amp;iacute;odo de residencia para la obtenci&amp;oacute;n del t&amp;iacute;tulo de especialista en la especialidad a la que se opta, efectuada por el Comit&amp;eacute; de Evaluaci&amp;oacute;n bas&amp;aacute;ndose en los resultados anuales ponderados de conformidad con lo que se establece en el anexo II de la Resoluci&amp;oacute;n de 21 de marzo de 2018.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:22px; background-color:#a1c1e7; border-top:none; border-right:none; border-left:1px solid #0070c0" valign="top"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;span lang="CA" style="color:black"&gt;R1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n entre 5 y 7,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;5 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt;7,5 y &amp;lt;9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;8 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt; 9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;10 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:22px; background-color:#a1c1e7; border-top:none; border-right:none; border-left:1px solid #0070c0" valign="top"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;span lang="CA" style="color:black"&gt;R2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n entre 5 y 7,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;8 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt;7,5 y &amp;lt;9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;12 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt; 9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;15 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:22px; background-color:#a1c1e7; border-top:none; border-right:none; border-left:1px solid #0070c0" valign="top"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;span lang="CA" style="color:black"&gt;R3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n entre 5 y 7,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;10 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt;7,5 y &amp;lt;9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;15 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Calificaci&amp;oacute;n &amp;gt; 9,5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;20 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:28px; background-color:#8db4e2; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;Continuidad asistencial (m&amp;aacute;ximo, 10 puntos)&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:44px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Haber realizado y finalizado la formaci&amp;oacute;n especializada en el Servicio de Salud de les Illes Baleares&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:44px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;10 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:28px; background-color:#8db4e2; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;Conocimientos de catal&amp;aacute;n (m&amp;aacute;ximo, 5 puntos)&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimiento de catal&amp;aacute;n A2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;0,5 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimiento de catal&amp;aacute;n B1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;1 punto&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimiento de catal&amp;aacute;n B2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;2 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimiento de catal&amp;aacute;n C1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:28px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;3 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimiento de catal&amp;aacute;n C2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;4 puntos&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;Certificado de conocimientos de lenguaje administrativo (LA)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:22px; border-top:none; border-right:1px solid #0070c0; border-left:none"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;1 punto&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td colspan="2" style="border-bottom:1px solid #0070c0; width:100%; padding:.100px 5px .100px 5px; height:44px; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;*Se valora solo un certificado, excepto en el caso del certificado LA, en que la puntuaci&amp;oacute;n se acumula a la de otro certificado que se aporte. Si se presenta solamente el certificado LA, se valora con 1 punto&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
		&lt;tr&gt;&#xD;
			&lt;td style="border-bottom:1px solid #0070c0; width:76%; padding:.100px 5px .100px 5px; height:82px; background-color:#8db4e2; border-top:none; border-right:none; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;Puntuaci&amp;oacute;n total &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
			&lt;td nowrap="nowrap" style="border-bottom:1px solid #0070c0; width:23%; padding:.100px 5px .100px 5px; height:82px; background-color:#8db4e2; border-top:none; border-right:1px solid #0070c0; border-left:1px solid #0070c0"&gt;&#xD;
			&lt;p style="margin-bottom:11px"&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:107%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;&lt;span lang="CA" style="color:black"&gt;100 PUNTOS&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
			&lt;/td&gt;&#xD;
		&lt;/tr&gt;&#xD;
	&lt;/tbody&gt;&#xD;
&lt;/table&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:11px"&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:115%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;b&gt;* Regla de valoraci&amp;oacute;n del resultado de la prueba selectiva MIR.&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:12pt"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;&lt;span style="font-size:11.0pt"&gt;La puntuaci&amp;oacute;n m&amp;aacute;xima de este m&amp;eacute;rito en el baremo ser&amp;aacute; de 40 puntos.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="tab-stops:274.15pt"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;&lt;span style="font-size:11.0pt"&gt;La f&amp;oacute;rmula es la siguiente:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:11pt"&gt;&lt;span style="line-height:115%"&gt;&lt;span style="font-family:Calibri,sans-serif"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;Se divide el orden de prelaci&amp;oacute;n del candidato menos 1 entre la &amp;uacute;ltima posici&amp;oacute;n de orden de prelaci&amp;oacute;n de los candidatos presentados en este procedimiento de selecci&amp;oacute;n menos 1 del a&amp;ntilde;o correspondiente.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Noto Sans&amp;quot;, sans-serif; font-size: 11pt;"&gt;Se realiza la operaci&amp;oacute;n de 1 menos el resultado del apartado anterior y se multiplica por 40 para la obtenci&amp;oacute;n de la puntuaci&amp;oacute;n de este m&amp;eacute;rito.&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:13px"&gt;&lt;span style="font-size:12pt"&gt;&lt;span style="tab-stops:274.15pt"&gt;&lt;span style="font-family:&amp;quot;Noto Sans&amp;quot;,sans-serif"&gt;&lt;span style="font-size:11.0pt"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:13px"&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p style="margin-bottom:13px"&gt;&amp;nbsp;&lt;/p&gt;</content:encoded></item><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/68623</guid><title>CSIF sale a la calle en defensa de tus condiciones salariales y laborales</title><pubDate>Mon, 31 Mar 25 13:00:00 CEST</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/68623</link><dc:creator xmlns:dc="dc">elena-luisa.serra.gutierrez</dc:creator><dcterms:alternative xmlns:dcterms="dcterms">Convocatoria de concentraci&#xF3;n el viernes 4 de abril, a las 12 horas, ante la Delegaci&#xF3;n de Gobierno en Palma.</dcterms:alternative><description>Convocatoria de concentraci&#xF3;n el viernes 4 de abril, a las 12 horas, ante la Delegaci&#xF3;n de Gobierno en Palma.</description><category>Convocatorias</category><category>&#xDA;ltimas noticias</category><category>CSIF Informa</category><media:content xmlns:media="media" url="https://www.csif.es/uploads/articulo/imagenPrincipal/banner-4abril-1743418103-png-1743420679.webp" type="image/webp" medium="image"><media:credit/><media:title>Baleares - Sanidad Image</media:title><media:text/><media:description/></media:content><content:encoded xmlns:content="content">&lt;p&gt;La Central Sindical Independiente y de Funcionarios (CSIF) ha convocado el pr&amp;oacute;ximo &lt;strong&gt;viernes, 4 de abril, &lt;/strong&gt;movilizaciones en toda Espa&amp;ntilde;a para exigir al Gobierno que se mejoren las condiciones laborales de los empleados p&amp;uacute;blicos en diferentes &amp;aacute;mbitos, entre ellos la subida salarial pendiente desde el a&amp;ntilde;o pasado y un nuevo acuerdo retributivo. &lt;strong&gt;En Baleares, la movilizaci&amp;oacute;n se llevar&amp;aacute; a cabo ante la Delegaci&amp;oacute;n del Gobierno en Palma, de 12 a 13.00 horas&lt;/strong&gt;.&amp;nbsp;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;strong&gt;NOS MOVILIZAMOS POR&lt;/strong&gt;:&lt;/p&gt;&#xD;
&#xD;
&lt;ul&gt;&#xD;
	&lt;li&gt;&lt;strong&gt;&amp;nbsp;La negociaci&amp;oacute;n de un nuevo acuerdo salarial (el actual concluy&amp;oacute; el pasado 31 de diciembre)&lt;/strong&gt;. Las/os empleados p&amp;uacute;blicos han perdido &lt;strong&gt;un 8,3%&lt;/strong&gt; desde la firma del acuerdo del Gobierno con CC.OO. y UGT, y m&amp;aacute;s de &lt;strong&gt;un 20 por ciento&lt;/strong&gt; desde los recortes de Zapatero en 2010. Adem&amp;aacute;s, a fecha de hoy seguimos sin ingresar el 0,5 por ciento adicional del pasado a&amp;ntilde;o. &lt;strong&gt;CSIF exige que la subida salarial se produzca de manera autom&amp;aacute;tica todos los a&amp;ntilde;os, al igual que las pensiones o la subida del SMI. &lt;/strong&gt;&lt;/li&gt;&#xD;
	&lt;li&gt;&amp;nbsp;Recuperaci&amp;oacute;n de la estructura salarial previa a los recortes de 2010, con el cobro &amp;iacute;ntegro de la paga extra.&lt;/li&gt;&#xD;
	&lt;li&gt;Equiparaci&amp;oacute;n salarial entre las distintas administraciones p&amp;uacute;blicas. IGUAL TRABAJO, IGUAL SALARIO&lt;/li&gt;&#xD;
	&lt;li&gt;&amp;nbsp;Negociaci&amp;oacute;n de una nueva oferta de empleo p&amp;uacute;blico para 2025 eliminando la tasa de reposici&amp;oacute;n.&lt;/li&gt;&#xD;
	&lt;li&gt;&lt;strong&gt;&amp;nbsp;La adecuaci&amp;oacute;n de los grupos profesionales del art&amp;iacute;culo 76 del TREBEP&lt;/strong&gt;&lt;/li&gt;&#xD;
	&lt;li&gt;&amp;nbsp;Jornada laboral de 35 horas en el conjunto del Estado e implementaci&amp;oacute;n de carrera profesional en todas las administraciones, as&amp;iacute; como del teletrabajo.&lt;/li&gt;&#xD;
	&lt;li&gt;&amp;nbsp;Mejora de las condiciones de jubilaci&amp;oacute;n del R&amp;eacute;gimen General y Clases Pasivas, as&amp;iacute; como &lt;strong&gt;la regulaci&amp;oacute;n inmediata para que los funcionarios y estatutarios puedan acogerse a la jubilaci&amp;oacute;n parcial&lt;/strong&gt;&lt;/li&gt;&#xD;
&lt;/ul&gt;</content:encoded></item><item><guid isPermalink="true">https://www.csif.es/es/noticia/portada/balearessanidad/articulo/51875</guid><title>MESA SECTORIAL DE SANIDAD DEL 16 DE MAYO DE 2024</title><pubDate>Fri, 17 May 24 09:44:00 CEST</pubDate><link>https://www.csif.es/es/noticia/portada/balearessanidad/articulo/51875</link><dc:creator xmlns:dc="dc">carmen.eugenio.maneiro</dc:creator><dcterms:alternative xmlns:dcterms="dcterms">MESA SECTORIAL DE SANIDAD DEL 16 DE MAYO DE 2024&#xD;
CSIF ha votado a favor y se han aprobado los siguientes acuerdos:</dcterms:alternative><description>MESA SECTORIAL DE SANIDAD DEL 16 DE MAYO DE 2024&#xD;
CSIF ha votado a favor y se han aprobado los siguientes acuerdos:</description><category>&#xDA;ltimas noticias</category><content:encoded xmlns:content="content">&lt;p&gt;&lt;img alt="" src="https://www.csif.es/uploads/articulo/imagenesTexto/66470b4446822.jpg" style="width: 1241px; height: 1755px;" /&gt;&lt;/p&gt;</content:encoded></item></channel></rss>
