41
| <![CDATA[<body style="font-family:arial" class="has-drawer" >
<div class="fundoAcessibilidade visible-lg visible-md" >
<div class="container-fluid linksOpcoesAcesso col-md-12" >
<ul class="list-inline">
<li class='liAcessibilidade'>
<img class="" src="https://www.weblinesistemas.com/responsivo/imagens/icone_deficiente.png"/>
<span class="hidden-md">Recursos de Acessibilidade:</span>
</li>
<li class='liAcessibilidade'>
<a href="#conteudo" accesskey="1" class="scroll">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/tecla_alt.png"/>
<span>Tecle Alt+1 : ir ao conteúdo</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="#mapa_site" accesskey="2" class=" scroll">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/tecla_alt.png"/>
<span>Tecle Alt+2 : ir ao mapa do site</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="acess-texto cpointer " data-sinal="-" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_diminui_texto.png"/>
<span>Texto menor</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="acess-texto cpointer " data-sinal="+" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_aumenta_texto.png"/>
<span>Texto maior</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="cpointer acess-contraste" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/icone_contraste.png"/>
<span>Contraste ; ; ;</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="?pag=T1RjPU5tWT1PR009T0RjPU9UYz1PRGc9T1dFPQ==" style="text-decoration:none;">
<i class="fa fa-hand-peace-o" aria-hidden="true"></i>
<span>Tradução para Libras</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="?pag=T0RJPU9EWT1PRGc9T1RnPU9UZz1PVFk9T0RZPU9UST1PVGM9T1RFPU9XRT1PV1k9T1dFPU9UQT1PVEk9T1RJPVlUQT0=" >
<img src="https://www.weblinesistemas.com/acessibilidade/imagens/icone_acesso.png" alt="Tecle Alt+1 : ir ao conteúdo" >
</a>
</li>
</ul>
</div>
</div>
<div class="visible-xs visible-sm" >
<div class='navbar-fixed-top'>
<div class="fundoAcessibilidade visible-xs visible-sm cpointer " >
<div data-toggle="collapse" data-target="#acessibilidadeCollapse">
<img class="" src="https://www.weblinesistemas.com/responsivo/imagens/icone_deficiente.png"/>
<span><strong>Recursos de Acessibilidade</strong></span>
</div>
</div>
<div class="linksOpcoesAcesso collapse w100Porcento" id='acessibilidadeCollapse' >
<div class='fundoAcessibilidade'>
<ul class="list-unstyled">
<li class='liAcessibilidade'>
<a href="#conteudo" accesskey="1" class="scroll">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/tecla_alt.png"/>
<span>Clique aqui para ir ao conteúdo</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="#mapa_site" accesskey="2" class=" scroll">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/tecla_alt.png"/>
<span>Clique aqui para ir ao mapa do site</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="acess-texto cpointer " data-sinal="-" >
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_diminui_texto.png"/>
<span>Texto menor</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="acess-texto cpointer " data-sinal="+" >
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_aumenta_texto.png"/>
<span>Texto maior</span>
</a>
</li>
<li class='liAcessibilidade'>
<a class="cpointer acess-contraste" >
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/icone_contraste.png"/>
<span>Contraste ; ; ;</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="?pag=T1RjPU5tWT1PR009T0RjPU9UYz1PRGc9T1dFPQ==" style="text-decoration:none;">
<i class="fa fa-hand-peace-o" aria-hidden="true"></i>
<span>Tradução para Libras</span>
</a>
</li>
<li class='liAcessibilidade'>
<a href="?pag=T0RJPU9EWT1PRGc9T1RnPU9UZz1PVFk9T0RZPU9UST1PVGM9T1RFPU9XRT1PV1k9T1dFPU9UQT1PVEk9T1RJPVlUQT0=" >
<img src="https://www.weblinesistemas.com/acessibilidade/imagens/icone_acesso.png" alt="Tecle Alt+1 : ir ao conteúdo" >
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function(){
//***********************************************************************************Faz o aumentar e diminuir a fonte*********************
function aumentaFonte(sinal) {
if(sinal == '+') {
novoTamanho = parseInt(sessionStorage.fonte_atual)+ 2;
} else {
novoTamanho = parseInt(sessionStorage.fonte_atual)- 2;
}
if(novoTamanho >= 12 && novoTamanho <= 18){
sessionStorage.fonte_atual = novoTamanho;
$("*").css('font-size' , novoTamanho);
}
}
if(!sessionStorage.fonte_atual > 0){ sessionStorage.fonte_atual = $('body').css('font-size'); }
$('.acess-texto').click(function(){ aumentaFonte($(this).attr('data-sinal')) });
//*********************************************************************************************************Fim acessibilida fonte**********
//***********************************************************************************Contraste*********************************************
function mudaContraste(contraste){
if(typeof sessionStorage.contraste != "undefined"){ var padrao = JSON.parse(sessionStorage.contrastePadrao); }
if(contraste == 1){
location.reload();
$('body').css('background-color' , padrao.body );
$('.navbar-default').css('background-color' , padrao.navbardefault );
$('header').css('background-color' , padrao.header );
$('.bgAzulescuro').css('background-color' , padrao.bgAzulescuro );
$('.tituloBox ').css('color' , padrao.tituloBox );
$('.textoBox ').css('color' , padrao.textoBox );
$('.box').css('background' , padrao.box );
$('.box2').css('background' , padrao.box2 );
$('.mapa_site').css('background-color' , padrao.mapa_site );
$('.copy').css('background-color' , padrao.copy );
$('.panel-heading').css('background-color' , padrao.panelheading );
$('.border5pxAzul').css('border-top' , padrao.border5pxAzul );
$('#areaMeioPag *').css('color' , padrao.areaMeioPag );
$('.linksNoticias ').css('color' , padrao.linksNoticias );
$('#legendas a').css('color' , padrao.legendas_a );
$('.listaVereadores').css('color' , padrao.listaVereadores );
$('.dropdown-menu').css('background' , padrao.dropdownmenu );
$('.titulo_noticia').css('color' , padrao.tituloNoticia );
$('.subtitulo_noticia').css('color' , padrao.subtituloNoticia );
$('.chamada_noticia').css('color' , padrao.chamadaNoticia );
$('.tituloPagina').css('color' , padrao.tituloPagina );
$('.listaUltimasGalerias div').css('color' , padrao.listaUltimasGalerias );
$( "tr" ).css( "background-color", "" );
$( ".table-striped > tbody > tr:nth-of-type(odd)" ).css( "background-color", "" );
$('.tiposBuscador').css('color' , padrao.tiposBuscador );
$('.dropdown-toggle').css('color' , padrao.dropdown-toggle );
$('.paddingLeft0px').css('color' , padrao.paddingLeft0px);
$('.breadcrumb').css('color' , padrao.breadcrumb);
$('.form-control').css('color' , padrao.form-control);
$('.pagination > li > a, .pagination > li > span').css("background-color", "");
$('.numberDiaAcess').css('color', padrao.numberDiaAcess);
$('.legendaAcess').css('color', padrao.legendaAcess);
$('.list-group-item').css('color', padrao.list-group-item);
$('.tituloBoxEnquete').css('color', padrao.tituloBoxEnquete);
$('.radioEnquete').css('color', padrao.radioEnquete);
$('img').each(function(){ //percorre todas imagens da tela e se tiver image de contraste retorna para normal
if($(this).attr("data-contraste") == 1){//adicionar na tag da imagem que tiver outra de contraste
var arraySrc = $(this).attr("src").split('/');
Newarray = arraySrc.filter((value)=>value!='contraste');
neWarraySrc = Newarray.join("/");
$(this).attr("src" , neWarraySrc );
}
});
}else if(contraste == 0){
$('body').css('background-color' ,'#000');
$('.navbar-default').css('background-color' ,'transparent' );
$('header').css('background-color' , '#585858' );
$('.bgAzulescuro').css('background-color' ,'#000' );
$('.tituloBox').css('color' ,'yellow' );
$('.textoBox').css('color' ,'yellow' );
$('.box').css('background' ,'transparent' );
$('.box2').css('background' ,'transparent' );
$('.mapa_site').css('background-color' , '#585858' );
$('.copy').css('background-color' ,'#000' );
$('.panel-heading').css('background-color' ,'#585858' );
$('.border5pxAzul').css('border-top' ,'0' );
$('#areaMeioPag *').css('color' ,'#FFF' );
$('.linksNoticias ').css('color' ,'#FFF' );
$('#legendas a').css('color' ,'#FFF' );
$('.listaVereadores').css('color' ,'#FFF' );
$('.titulo_noticia').css('color' ,'#FFF' );
$('.subtitulo_noticia').css('color' ,'#FFF' );
$('.chamada_noticia').css('color' ,'#FFF' );
$('.listaUltimasGalerias div').css('color' ,'yellow' );
$('.tituloPagina').css('color' ,'#FFF' );
$('.dropdown-menu').css('background-image', 'url( "https://www.weblinesistemas.com/responsivo/imagens/submenu_preto.png" )');
$( "tr" ).css( "background-color", "#000000" );
$( ".table-striped > tbody > tr:nth-of-type(odd)" ).css( "background-color", "#42545d" );
$('.tiposBuscador').css('color' , '#FFF');
$('.btn-default').css('color' , '#333');
$('.dropdown-toggle').css('color' , 'white' );
$('.paddingLeft0px').css('color' , '#FFF');
$('.breadcrumb').css('background-color' , 'transparent');
$('.form-control').css('color' , '#555');
$('.pagination > li > a, .pagination > li > span').css("background-color", "transparent");
$('.numberDiaAcess').css('color', '#FFF');
$('.legendaAcess').css('color', '#FFF');
$('.list-group-item').css('background-color', '#000');
$('.tituloBoxEnquete').css('color', '#a5a2a2');
$('.radioEnquete').css('color', '#a5a2a2');
$('img').each(function(){ //percorre todas imagens da tela e se tiver image de contraste retorna para normal
if($(this).attr("data-contraste") == 1){//adicionar na tag da imagem que tiver outra de contraste
var arraySrc = $(this).attr("src").split('/');
arraySrc.splice( arraySrc.length-1 ,0 ,'contraste');
neWarraySrc = arraySrc.join("/");
$(this).attr("src" , neWarraySrc );
}
});
}
}
if(sessionStorage.contraste == 0){
mudaContraste(sessionStorage.contraste);
}
if(typeof sessionStorage.contraste == "undefined"){
sessionStorage.contraste = 1; //inicializa a session
sessionStorage.contrastePadrao = JSON.stringify({
body:$('body').css('background-color'),
header:$('header').css('background-color'),
navbardefault:$('.navbar-default').css('background-color'),
bgAzulescuro:$('.bgAzulescuro').css('background-color'),
tituloBox :$('.tituloBox ').css('color'),
textoBox :$('.textoBox ').css('color'),
box :$('.box').css('background'),
box2 :$('.box2').css('background'),
mapa_site :$('.mapa_site').css('background-color'),
border5pxAzul :$('.border5pxAzul').css('border-top'),
panelheading :$('.panel-heading ').css('background-color'),
copy :$('.copy ').css('background-color'),
areaMeioPag :$('#areaMeioPag ').css('color'),
linksNoticias :$('.linksNoticias ').css('color'),
legendas_a : $('#legendas a').css('color'),
listaVereadores : $('.listaVereadores').css('color'),
dropdownmenu : $('.dropdown-menu').css('background'),
tituloNoticia : $('.titulo_noticia').css('color'),
subtituloNoticia : $('.subtitulo_noticia').css('color'),
chamadaNoticia : $('.chamada_noticia').css('color'),
listaUltimasGalerias : $('.listaUltimasGalerias div').css('color'),
tituloPagina : $('.tituloPagina').css('color'),
});
//Obj com as tags para mudar a cor e guardar o valor padrao.
}
$('.acess-contraste').click(function(){
sessionStorage.contraste = sessionStorage.contraste == 1 ? 0 : 1 ;
mudaContraste(sessionStorage.contraste);
});
//*********************************************************************************************************Fim Contraste**********
});
</script>
<header class="headereldorado">
<div class="bgtopoEldorado">
<div class="container">
<div class="row" >
<div class="col-md-1 col-sm-3 paddingRight0px">
<a href="?pag=" ><img src="images/brasao.png" style="margin-top:11px;" class="img-responsive" alt="Cesário Lange" /></a>
</div>
<div class="col-md-9 col-sm-9 ">
<div class="visible-lg visible-md visible-sm">
<div class="topo_texto">
CÂMARA MUNICIPAL DE CESÁRIO LANGE </div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" >
<div class="col-md-2 col-sm-3">
<div class="brasao-sm">
<!--<a href="/" ><img src="images/brasao_topo.png" class="img-responsive maxWidth85 pull-right imgLogoTopo" alt="Cesário Lange" /></a>-->
</div>
</div>
<div class="col-md-10 col-sm-7 areaMenuRespLay11 ">
<div class="">
<nav class="navbar navbar-default">
<div class="">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Câmara</a>
<ul class="dropdown-menu">
<li><a href="?pag=" target="">Página Principal</a></li>
<li><a href="?pag=T0RRPU9UST1PVEE9T0dVPU9UZz1PV0U9T1RZPU9HVT1PV009" target="">Comissões</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=236" target="">Contato</a></li>
<li><a href="?pag=T0RVPU9EUT1PRGM9T1RRPU9UZz1Oamc9T0RrPU9HVT1PV0k9T1dZPU9XRT1ZVEE9" target="">Dados Abertos</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=8" target="">Galeria dos Presidentes</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=6" target="">História da Câmara</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=214" target="">História do Municí­pio</a></li>
<li><a href="?pag=T0dRPU9EZz1PR0U9T0dVPU9UZz1PVE09T0RnPU9XUT1PV1U9T1dRPU9HTT1ZVEE9" target="">Legislaturas</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=231" target="">Organograma</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=226" target="">Perguntas Frequentes</a></li>
<li><a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9XWT1PVEk9T0dZPU9UQT1PV009&categoria=8&tipo=Videos&idGaleria=&p=0&galeria=16" target="">Vídeo Institucional</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Legislação</a>
<ul class="dropdown-menu">
<li><a href="http://www.legislacao.sp.gov.br/legislacao/dg280202.nsf/a2dc3f553380ee0f83256cfb00501463/46e2576658b1c52903256d63004f305a?OpenDocument" target="_blank">Constituição Estadual</a></li>
<li><a href="http://www.planalto.gov.br/ccivil_03/Constituicao/Constituicao.htm" target="_blank">Constituição Federal</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=4" target="">Decretos Legislativos</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=5" target="">Emendas a LOM</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T0RRPU9UUT1PVGs9T0dVPU9HRT1PVGM9T1RRPU9HVT1PR1U9" target="">Lei Orgânica do Município</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=2" target="">Leis Complementares</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=1" target="">Leis Ordinárias</a></li>
<li><a href="?pag=T1RNPU9EZz1PR0U9T0dVPU9UST1PR009T1RVPU9XUT1PVGc9T0dFPU9UUT1PV0k9WVRFPU9UUT1ZVEU9T1dZPVlUQT0=" target="">Regimento Interno</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=3" target="">Resoluções</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Vereadores</a>
<ul class="dropdown-menu">
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST1PR1U9T1dVPQ==" target="">Vereadores</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Sessão</a>
<ul class="dropdown-menu">
<li><a href="?pag=T0RRPU9UST1PVEU9T1RrPU9EWT1PV0U9T0RZPU9Uaz1PV1U9T0dRPU9UYz1PVFk9T1RBPU9UQT1ZVEk9&idtipo=25" target="">Atas Reunião das Comissões</a></li>
<li><a href="?pag=T0RJPU9UYz1PRFE9T1RnPU56az1PVEE9T1RjPU9UZz1OMk09T1RBPU9XVT1ZVEE9T0dVPU9XVT0=" target="">Atas Sessões</a></li>
<li><a href="?pag=T1RFPU9EUT1PVGc9T1RrPU9EWT1PV0U9TnpVPU9HVT1ZVEE9&pg=1" target="">Pautas</a></li>
<li><a href="?pag=T0RjPU9UVT1PRGc9T1RZPU9XRT1PR009T1RVPU9HTT1PVEk9T0dNPU9HRT1ZVE09T1RJPVlURT1PVFE9T1RJPU9UVT1ZVEk9WVRVPU9XRT1ZVGc9T1RZPU9UZz1ZVGM9WVRnPQ==" target="">Presença dos Vereadores nas Sessões</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Processo Legislativo</a>
<ul class="dropdown-menu">
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=1" target="">Indicações</a></li>
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=2" target="">Moções</a></li>
<li><a href="?pag=T1RFPU9UST1PVFU9T1RrPU9EWT1PVGs9T1RBPU9HRT1PV009T0dNPU9Uaz1PV009" target="">Portarias</a></li>
<li><a href="?pag=T1RFPU9UVT1PVEk9T0dZPU9HRT1PV0k9T1RZPU9XTT1PV1E9T1dRPU9HTT1PV0U9T1RZPVlUTT1PVEE9T1RRPU9UST1ZVEk9&sitIn=8,4" target="">Projetos em Tramitação</a></li>
<li><a href="?pag=T1RVPU9HTT1PVE09T1RRPU9UZz1PVGM9T1RrPU9UZz1PVE09T1RBPU9XWT1PV009WVRBPVlUTT1ZVEU9T1RJPU9XVT1PV009WVRjPU9UWT1PVGs9WVRZPVlXRT0=&sitNot=8,4" target="">Projetos Tramitados</a></li>
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=3" target="">Requerimentos</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle " data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Editais</a>
<ul class="dropdown-menu">
<li><a href="?pag=T0RZPU9EYz1PR009T1RrPU9EWT1PVE09T0RZPU9UQT1PR1U9T1dZPU9HRT1ZVEU9T1RZPU9XWT1PV1U9WVRRPQ==&tipo=3" target="">Licitações</a></li>
</ul>
</li>
<li class="dropdown " data-link="#" >
<a href="#" target="" class="dropdown-toggle ultimo-topo" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Expediente</a>
<ul class="dropdown-menu">
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=235" target="">Expediente da Câmara</a></li>
<li><a href="?pag=TmpjPU9UST1PVFU9T1RJPU9XRT1PVE09T0RnPU9XST1PVEk9T1dFPU56RT1PR1U9T1RrPU9UUT1Oekk9WVRBPU9XWT1ZVEk9WVRZPU9UZz1ZVFE9&form=true" target="">Fale Conosco</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=219" target="">Telefones Úteis</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<script>
$(document).ready(function(){
$('.click-link').click(function(){
window.location = $(this).data('link');
})
})
</script>
</div>
</div>
</div>
</div>
</header>
<div class="bgColorCinzaSeachEldorado" >
<div class="container" >
<div class="row ">
<div class="col-md-6 col-md-offset-3 padTop24Bottom24">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<form method="POST" id="form-escolha-busca" action="?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1Oamc9T1dRPU9HRT1PVGM9T0dVPU9HTT1PVEU9T0dVPU4yST1PVFE9T1dFPVlUUT0=" >
<div class="input-group input-group">
<label for="palavraChave"></label>
<input style="width:100%; height:34px;" type="text" id="palavraChave" name="palavraChave" class="inputBuscador" placeholder="Digite o texto" />
<input type="hidden" name="buscarPorTodosOsTipos" value="1" />
<div class="input-group-btn">
<button class="btn btnAzulSearch"><i class="fa fa-search"></i></button>
</div>
</div>
</form>
</div>
</div><div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 paddingRight0px">
<div class="form-inline tiposBuscador2 paddingTop7px">
<input type="radio" name="pag" id="pag1" class="pagBusc" />
<label>Notícia</label>
<input type="radio" name="pag" id="pag2" checked class="pagBusc" />
<label>Legislação</label>
<input type="radio" name="pag" id="pag3" class="pagBusc" /><label>Propositura</label>
</div>
</div>
</div>
<div class="h10px"></div>
<script>
$(document).ready(function(){
$('#pag1').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1OelU9T1RZPU9XUT1PVEk9T0dVPU9UUT1PR1U9WVRBPQ==' );
});
$('#pag2').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1Oamc9T1dRPU9HRT1PVGM9T0dVPU9HTT1PVEU9T0dVPU4yST1PVFE9T1dFPVlUUT0=' );
});
$('#pag3').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1Oamc9T1dRPU9HRT1PVGM9T0dVPU9HTT1PVEU9T0dVPU4yWT1ZVEU9WVRBPVlURT1ZVEk9WVRZPU9XVT1ZVGs9WVdNPVlUaz1PV0U9WVdNPQ==' );
});
/*$('#form-escolha-busca').submit(function(){
if($('#palavraChave').val()==""){
alert("Digite uma palavra chave.");
return true;
}
});*/
});
</script>
</div>
<div class="col-md-3 padTop24Bottom24 BotRedesSociais">
<br>
</div>
</div>
</div>
</div>
<div class="h10px" ></div>
<div class="container">
<div class="row">
<div class="col-md-3 ">
<div style="border-radius:4px;" class="box" >
<div class="" style="display:table;">
<ul class="listaVereadores visible-lg visible-md" ><!-- Para mostrar o presidente acima no desktop -->
<li class=" cpointer" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="maxWidth48porcent">
<div class="tituloBox">Vereadores</div>
<div class="w125px fs9px" >15° LEGISLATURA</div>
<span class='fs11px'>Presidente Atual</span><div class='fs11px'>LUIZ GONZAGA DOS SANTOS</div>
</li>
</ul>
<div class="clearfix"></div>
<ul class="listaVereadores" >
<li class="cpointer hidden-lg hidden-md" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=11&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" title="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" src="temp/f8317e7a93e5be03828350edb3825e4b____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=18&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" title="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" src="temp/3961f4c4e84594886a3c316a0aa20cf2____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=3&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ MATEUS PEDRO - Mateus Pedro" title="JOSÉ MATEUS PEDRO - Mateus Pedro" src="temp/c96de5b71362b2009184a7d24014352a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=37&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" title="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" src="temp/96b3c4ac41f8027dd08fbf8c18cebd9f____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=19&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSIAS ROSA NETO - JOSIAS" title="JOSIAS ROSA NETO - JOSIAS" src="temp/95a9e0370254af04c6879ab3bf1522f7____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=20&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUCIANO CÉSAR DE TOLEDO - LUCIANO" title="LUCIANO CÉSAR DE TOLEDO - LUCIANO" src="temp/314acbf9bc3a7d695752f68dad51778e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=21&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" title="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" src="temp/2a09770cb0d732686977f0b0d76d2da8____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=9&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="OSMAR TREVISAN - Osmar Trevisan" title="OSMAR TREVISAN - Osmar Trevisan" src="temp/40502aa4f1a52951bfbffcda2511ec87____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=6&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ROQUE MANES - Roque Manes" title="ROQUE MANES - Roque Manes" src="temp/8d093e880fba1bc78b2643512187da6a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=17&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" title="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" src="temp/cd7c5daf8d4d9bd279abb3a5470ac98e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
</ul>
</div>
</div>
<div class="h10px"></div>
<a href="?pag=T1RFPU9EUT1PVGc9T1RrPU9EWT1PV0U9TnpVPU9HVT1ZVEE9" style="text-decoration:none; cursor:pointer;">
<div class="col-md-12 mapa_site topoBoxSessao btnProximaBackground">
Próxima Sessão
</div>
<div class="proximasessaoDiv" >
<div class="h10px"></div>
<p class='linhaSessao' style='padding-top:20px;margin:10px;border-bottom: 1px solid #ddd;'>TODAS AS 1ª E 3ª QUINTAS DO MÊS </p><p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>PRÓXIMAS SESSÕES DO MÊS </p><p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>16ª SESSÃO ORDINÁRIA(15/09 - 20:00 HORAS)</p> <div class="h10px"></div>
</div>
</a>
<div class="h10px"></div>
<div id="drawerExample" class="drawer dw-xs-10 dw-sm-6 dw-md-4 fold hidden-lg hidden-md maxWidth200px" aria-labelledby="drawerExample">
<div class="drawer-controls ">
<a href="#drawerExample" data-toggle="drawer" href="#drawerExample" aria-foldedopen="false" aria-controls="drawerExample" >
<img src="https://www.weblinesistemas.com/responsivo/imagens/menu_lateral.png" alt="Aba Menu" /></a>
</div>
<div class="drawer-contents">
<div class="drawer-body">
<div class="row">
<div class="col-sm-12">
<a href="https://www.camaracesariolange.sp.gov.br/coronavirus" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_banner/botao_coronavirus.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1125" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado3/tratamento_dados_lgpd_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://webmail-seguro.com.br/camaracesariolange.sp.gov.br/" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/webmail_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RJPU9HRT1PRGc9T1RNPU9Eaz1PRGc9Tm1NPU9XWT1PR1U9T1RrPU9XWT1PV009WVRBPQ==" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/agenda_event_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9HTT1PVE09T1RRPU9EUT1PV0k9T1RrPU9HRT1PVGM9T1dVPU9XST1PR1U9T1dZPU9UUT1PV1E9T1RRPU9XRT1PVFE9" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado2/mais_transparencia_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9HRT1PV1U9T0dZPU9UUT1PV009" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_audio_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9HWT1PVGc9T1dZPU9XRT0=" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_foto_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9XWT1PVEk9T0dZPU9UQT1PV009" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_video_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.facebook.com/Camaracesario" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/transmissao_verde_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.camaracesariolange.sp.gov.br/esic" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_banner/e-sic-duplo.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RjPU9HTT1PVEU9T0RZPU9UTT1PR0U9T0dNPU9UST1PV0k9T1dFPQ==&view=LIST-FIN&idtipo=14" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_clean/contas_executivo_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1061" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado2/perguntas_frequentes_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.camaracesariolange.sp.gov.br/ouvidoria" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/ouvidoria_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<div class="h10px"></div>
</div>
</div>
<script>
$(document).ready(function(){
$('#btnClickTvWownza').click(function(){
window.open('/tv_wowza','','width=800,location=no,directories=no,scrollbars=no,menubar=no,statusbar=no,resize=no,height=680','no','no');
})
});
</script> </div>
</div>
</div>
</div>
<div class="col-md-6 paddingLeft0px" id="areaMeioPag">
<a id="conteudo" alt="Ir ao Conteudo" ><!-- ancora para acessibilidade --> </a>
<div class='row'>
<div class='col-md-12'>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="http://www.camaracesariolange.sp.gov.br/?pag=">Página Inicial </a></li>
<li class="breadcrumb-item"><a href="http://www.camaracesariolange.sp.gov.br/?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1OelU9T1RZPU9XUT1PVEk9T0dVPU9UUT1PR1U9WVRBPQ==">Imprensa</a></li>
<li class="breadcrumb-item active">GALERIA DOS PRESIDENTES </li>
</ol>
</div>
</div>
<div id="lightbox" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" style="width: fit-content;">
<button type="button" class="close hidden" data-dismiss="modal" aria-hidden="true">× </button>
<div class="modal-content">
<div class="modal-body">
<img class = "img-responsive" src="https://www.camaracesariolange.sp.gov.br/arquivos_site/sic_images/sem_imagem.jpg" alt="" />
</div>
</div>
</div>
</div>
<div class="autorNoticia">
</div>
<div id="titulo">
<div class="tituloTextoVereador text-center" style="margin-top:5px; font-size: 30px;">
</div>
</div>
<div style="/*display:table;*/width:100%;">
<style>
.MsoNormalTable {
width: 100% !important;
max-width: 100% !important;
table-layout: fixed;
}
.MsoNormalTable > td {
width: fit-content !important;
word-wrap: break-word;
}
#cont-noticia > span, #cont-noticia > p {
font-family: auto;
}
.MsoNormal > span {
position: initial !important;
}
</style><div id="cont-noticia" ><html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 15">
<meta name=Originator content="Microsoft Word 15">
<link rel=File-List href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/filelist.xml">
<link rel=Edit-Time-Data href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><o:SmartTagType
namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="metricconverter"/>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>PLENARIO</o:Author>
<o:LastAuthor>Luiz Eduardo Takemi Shibata</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>95</o:TotalTime>
<o:Created>2021-02-17T14:20:00Z</o:Created>
<o:LastSaved>2021-02-17T14:20:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>820</o:Words>
<o:Characters>4428</o:Characters>
<o:Lines>36</o:Lines>
<o:Paragraphs>10</o:Paragraphs>
<o:CharactersWithSpaces>5238</o:CharactersWithSpaces>
<o:Version>16.00</o:Version>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=themeData href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/themedata.thmx">
<link rel=colorSchemeMapping href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/colorschememapping.xml">
<!--[if gte mso 9]><xml>
<w:WordDocument>
<w:TrackMoves>false</w:TrackMoves>
<w:TrackFormatting/>
<w:HyphenationZone>21</w:HyphenationZone>
<w:PunctuationKerning/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>PT-BR</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:UseWord2010TableStyleRules/>
<w:DontGrowAutofit/>
<w:SplitPgBreakAndParaMark/>
<w:EnableOpenTypeKerning/>
<w:DontFlipMirrorIndents/>
<w:OverrideTableStyleHps/>
</w:Compatibility>
<m:mathPr>
<m:mathFont m:val="Cambria Math"/>
<m:brkBin m:val="before"/>
<m:brkBinSub m:val="--"/>
<m:smallFrac m:val="off"/>
<m:dispDef/>
<m:lMargin m:val="0"/>
<m:rMargin m:val="0"/>
<m:defJc m:val="centerGroup"/>
<m:wrapIndent m:val="1440"/>
<m:intLim m:val="subSup"/>
<m:naryLim m:val="undOvr"/>
</m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
DefSemiHidden="false" DefQFormat="false" DefPriority="99"
LatentStyleCount="371">
<w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 9"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 1"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 2"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 3"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 4"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 5"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 6"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 7"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 8"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 9"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footnote text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="header"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footer"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index heading"/>
<w:LsdException Locked="false" Priority="35" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="caption"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="table of figures"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="envelope address"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="envelope return"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footnote reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="line number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="page number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="endnote reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="endnote text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="table of authorities"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="macro"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="toa heading"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 5"/>
<w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Closing"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Signature"/>
<w:LsdException Locked="false" Priority="1" SemiHidden="true"
UnhideWhenUsed="true" Name="Default Paragraph Font"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Message Header"/>
<w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Salutation"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Date"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text First Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text First Indent 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Note Heading"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Block Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Hyperlink"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="FollowedHyperlink"/>
<w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
<w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Document Map"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Plain Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="E-mail Signature"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Top of Form"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Bottom of Form"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal (Web)"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Acronym"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Address"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Cite"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Code"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Definition"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Keyboard"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Preformatted"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Sample"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Typewriter"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Variable"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal Table"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation subject"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="No List"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Contemporary"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Elegant"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Professional"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Subtle 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Subtle 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Balloon Text"/>
<w:LsdException Locked="false" Priority="59" Name="Table Grid"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Theme"/>
<w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>
<w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
<w:LsdException Locked="false" Priority="61" Name="Light List"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
<w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
<w:LsdException Locked="false" Priority="34" QFormat="true"
Name="List Paragraph"/>
<w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
<w:LsdException Locked="false" Priority="30" QFormat="true"
Name="Intense Quote"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
<w:LsdException Locked="false" Priority="19" QFormat="true"
Name="Subtle Emphasis"/>
<w:LsdException Locked="false" Priority="21" QFormat="true"
Name="Intense Emphasis"/>
<w:LsdException Locked="false" Priority="31" QFormat="true"
Name="Subtle Reference"/>
<w:LsdException Locked="false" Priority="32" QFormat="true"
Name="Intense Reference"/>
<w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
<w:LsdException Locked="false" Priority="37" SemiHidden="true"
UnhideWhenUsed="true" Name="Bibliography"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
<w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
<w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
<w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
<w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
<w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
<w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
<w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
<w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
<w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 1"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 2"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 3"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 4"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 5"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 6"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
<w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
<w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 1"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 2"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 3"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 4"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 5"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 6"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 6"/>
</w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;
mso-font-charset:2;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:1;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:0 0 0 0 0 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-536870145 1073786111 1 0 415 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-link:"Texto de balão Char";
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-fareast-language:EN-US;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
span.TextodebaloChar
{mso-style-name:"Texto de balão Char";
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Texto de balão";
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-ascii-font-family:Tahoma;
mso-hansi-font-family:Tahoma;
mso-bidi-font-family:Tahoma;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
.MsoPapDefault
{mso-style-type:export-only;
margin-bottom:10.0pt;
line-height:115%;}
@page WordSection1
{size:595.3pt 841.9pt;
margin:70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin:35.4pt;
mso-footer-margin:35.4pt;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
@list l0
{mso-list-id:1902074;
mso-list-type:hybrid;
mso-list-template-ids:-1993993762 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1
{mso-list-id:376248774;
mso-list-type:hybrid;
mso-list-template-ids:-877229014 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2
{mso-list-id:1246382606;
mso-list-type:hybrid;
mso-list-template-ids:-2104466224 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3
{mso-list-id:1838495926;
mso-list-type:hybrid;
mso-list-template-ids:272137502 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4
{mso-list-id:2026056994;
mso-list-type:hybrid;
mso-list-template-ids:-774859062 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Tabela normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin-top:0cm;
mso-para-margin-right:0cm;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-fareast-language:EN-US;}
table.MsoTableGrid
{mso-style-name:"Tabela com grade";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-priority:59;
mso-style-unhide:no;
border:solid windowtext 1.0pt;
mso-border-alt:solid windowtext .5pt;
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-border-insideh:.5pt solid windowtext;
mso-border-insidev:.5pt solid windowtext;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-fareast-language:EN-US;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=PT-BR style='tab-interval:35.4pt'>
<div class=WordSection1>
<p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;line-height:115%;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<div align=center>
<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0 width=0
style='width:459.95pt;border-collapse:collapse;border:none;mso-yfti-tbllook:
1664;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:none;mso-border-insidev:
none'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:5;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:6;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:9;height:69.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;height:50.4pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;height:41.35pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;height:34.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;height:34.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:16;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:17;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:18;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:19;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:20;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:21;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:22;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:23;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:24;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:25;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:26;mso-yfti-lastrow:yes;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;font-family:
"Times New Roman",serif'><o:p> ;</o:p></span></p>
</div>
</body>
</html>
</div> <script>
$(".MsoNormalTable").attr("width","100%");
$(".MsoNormalTable").find('td').attr("width","");
$(".MsoNormalTable").find('td').attr("nowrap",null);
</script>
<script>
$( "img[vshapes='_x0000_t75']" ).attr('src','');
</script>
<script>
$( "img[vshapes='Imagem_x0020_2']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_3']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_4']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_15']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_5']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_7']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_8']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_9']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_16']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_17']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_18']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_19']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_24']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_25']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_20']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_21']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_22']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_12']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_23']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_26']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_13']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_31']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_11']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_29']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_30']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_14']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_10']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg');
</script>
</div>
<div class="h10px"></div>
<div class="row">
<div class="col-md-12">
<div class="h10px"></div>
<div class="h10px"></div>
<div class='col-md-12'>
<div class="container-fluid" >
<div class="noticiaDestaque">
<h4 class="">Leia Também</h4>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default noticiaDestaque">
<div class="panel-body">
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1131">
<img alt="Canal do titular de dados" src="https://www.camaracesariolange.sp.gov.br/arquivos_site/sic_images/sem_imagem.jpg" class="img-responsive" border="0">
</a>
</div>
<div class="panel-footer">
<p>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1131 " style="font-family:arial; font-size:12px;">Canal do titular de dados</a></p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default noticiaDestaque">
<div class="panel-body">
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1125">
<img alt="Tratamento de Dados na Câmara Municipal - LGPD" src="https://www.camaracesariolange.sp.gov.br/arquivos_site/sic_images/sem_imagem.jpg" class="img-responsive" border="0">
</a>
</div>
<div class="panel-footer">
<p>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1125 " style="font-family:arial; font-size:12px;">Tratamento de Dados na Câmara Municipal - LGPD</a></p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default noticiaDestaque">
<div class="panel-body">
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1092">
<img alt="JULGAMENTO DOS RECURSOS, CLASSIFICAÇÃO DEFINITIVA PRELIMINAR E CONVOCAÇÃO PARA A PROVA PRÁTICA" src="temp/f49fe8f1eb327974a1e2bc364f08e31e.jpg" class="img-responsive" border="0">
</a>
</div>
<div class="panel-footer">
<p>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1092 " style="font-family:arial; font-size:12px;">JULGAMENTO DOS RECURSOS, CLASSIFICAÇÃO DEFINITIVA PRELIMINAR E CONVOCAÇÃO PARA A PROVA PRÁTICA</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br> </div>
</div>
</div>
<div class="pull-right">
</div>
<br>
<div class="row" >
<div class="col-md-2 col-sm-2 col-xs-6" style="/*text-align: right;*/ margin-top: -20px;" >
<a target="_blank" href="https://web.whatsapp.com/send?text=GALERIA DOS PRESIDENTES - http%3A%2F%2Fwww.camaracesariolange.sp.gov.br%2F%3Fpag%3DT1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0%3D%26idmenu%3D8 " style="margin-left: 50px;" >
<img src="https://www.weblinesistemas.com/imagens_camaras/whatsapp2.ico" style="width:40px;"/>
</a>
</div>
<div class="col-md-12 col-xs-6 text-center" style="margin-left: -35px;" >
<div id="fb-root"></div>
<script>
$(document).ready(function(){
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v3.1';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
});
</script>
<div class="fb-like" data-href="https://www.camaracesariolange.sp.gov.br/weblineprimeirapagina.php?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=8&dataatualizacao=202209082158" data-layout="button_count" data-action="like" data-size="small" data-show-faces="true" data-share="true"></div>
</div>
<!--<div class="col-md-4 col-sm-4 col-xs-6" >
</div>-->
</div>
<br>
</div>
<div class="col-md-3 ">
<div class="clearfix visible-lg visible-md ">
<div class="row">
<div class="col-sm-12">
<a href="https://www.camaracesariolange.sp.gov.br/coronavirus" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_banner/botao_coronavirus.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1125" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado3/tratamento_dados_lgpd_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://webmail-seguro.com.br/camaracesariolange.sp.gov.br/" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/webmail_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RJPU9HRT1PRGc9T1RNPU9Eaz1PRGc9Tm1NPU9XWT1PR1U9T1RrPU9XWT1PV009WVRBPQ==" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/agenda_event_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9HTT1PVE09T1RRPU9EUT1PV0k9T1RrPU9HRT1PVGM9T1dVPU9XST1PR1U9T1dZPU9UUT1PV1E9T1RRPU9XRT1PVFE9" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado2/mais_transparencia_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9HRT1PV1U9T0dZPU9UUT1PV009" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_audio_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9HWT1PVGc9T1dZPU9XRT0=" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_foto_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9XWT1PVEk9T0dZPU9UQT1PV009" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_video_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.facebook.com/Camaracesario" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/transmissao_verde_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.camaracesariolange.sp.gov.br/esic" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_banner/e-sic-duplo.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T0RjPU9HTT1PVEU9T0RZPU9UTT1PR0U9T0dNPU9UST1PV0k9T1dFPQ==&view=LIST-FIN&idtipo=14" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_clean/contas_executivo_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1061" target="_self">
<img src="/arquivos_site//botoes_laterais/layout_arredondado2/perguntas_frequentes_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<a href="https://www.camaracesariolange.sp.gov.br/ouvidoria" target="_blank">
<img src="/arquivos_site//botoes_laterais/layout_arredondado/ouvidoria_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >
</a>
<div class="h10px espaco-botoes"></div>
<div class="h10px"></div>
</div>
</div>
<script>
$(document).ready(function(){
$('#btnClickTvWownza').click(function(){
window.open('/tv_wowza','','width=800,location=no,directories=no,scrollbars=no,menubar=no,statusbar=no,resize=no,height=680','no','no');
})
});
</script> </div>
</div>
</div>
<div class="h10px" ></div>
<hr>
<div class="container" >
<div class="row">
<div class="col-md-12 centered">
<ul class="list-inline text-center" >
<li >
<a href="http://www.legislacao.sp.gov.br/legislacao/index.htm" target="_blank" >
<img src="images/leg_estadual.jpg" class="img-responsive" />
</a>
</li>
<li >
<a href="http://www4.planalto.gov.br/legislacao" target="_blank" >
<img src="images/leg_federal.jpg" class="img-responsive" />
</a>
</li>
<li >
<a href="http://cesariolange.sp.gov.br/" target="_blank" >
<img src="images/prefeitura.jpg" class="img-responsive" />
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<a id="mapa_site" alt="Ir ao Mapa Site" ><!-- ancora para acessibilidade --> </a>
<div class="h10px" ></div>
<footer class="mapa_site">
<div class="container ">
<div class="row paddingLeft15px">
<div class="col-md-9 col-sm-9 col-xs-12 ">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Câmara</a>
</div>
<ul class="">
<li><a href="?pag=">Página Principal</a></li>
<li><a href="?pag=T0RRPU9UST1PVEE9T0dVPU9UZz1PV0U9T1RZPU9HVT1PV009">Comissões</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=236">Contato</a></li>
<li><a href="?pag=T0RVPU9EUT1PRGM9T1RRPU9UZz1Oamc9T0RrPU9HVT1PV0k9T1dZPU9XRT1ZVEE9">Dados Abertos</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=8">Galeria dos Presidentes</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=6">História da Câmara</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=214">História do Municí­pio</a></li>
<li><a href="?pag=T0dRPU9EZz1PR0U9T0dVPU9UZz1PVE09T0RnPU9XUT1PV1U9T1dRPU9HTT1ZVEE9">Legislaturas</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=231">Organograma</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=226">Perguntas Frequentes</a></li>
<li><a href="?pag=T0RnPU9EUT1PR1k9T0dFPU9UYz1PVEE9T0RnPU9XWT1PVEk9T0dZPU9UQT1PV009&categoria=8&tipo=Videos&idGaleria=&p=0&galeria=16">Vídeo Institucional</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Legislação</a>
</div>
<ul class="">
<li><a href="http://www.legislacao.sp.gov.br/legislacao/dg280202.nsf/a2dc3f553380ee0f83256cfb00501463/46e2576658b1c52903256d63004f305a?OpenDocument">Constituição Estadual</a></li>
<li><a href="http://www.planalto.gov.br/ccivil_03/Constituicao/Constituicao.htm">Constituição Federal</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=4">Decretos Legislativos</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=5">Emendas a LOM</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T0RRPU9UUT1PVGs9T0dVPU9HRT1PVGM9T1RRPU9HVT1PR1U9">Lei Orgânica do Município</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=2">Leis Complementares</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=1">Leis Ordinárias</a></li>
<li><a href="?pag=T1RNPU9EZz1PR0U9T0dVPU9UST1PR009T1RVPU9XUT1PVGc9T0dFPU9UUT1PV0k9WVRFPU9UUT1ZVEU9T1dZPVlUQT0=">Regimento Interno</a></li>
<li><a href="?pag=T0dRPU9EZz1PR009T1RnPQ==&&idtipolei=3">Resoluções</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Vereadores</a>
</div>
<ul class="">
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST1PR1U9T1dVPQ==">Vereadores</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Sessão</a>
</div>
<ul class="">
<li><a href="?pag=T0RRPU9UST1PVEU9T1RrPU9EWT1PV0U9T0RZPU9Uaz1PV1U9T0dRPU9UYz1PVFk9T1RBPU9UQT1ZVEk9&idtipo=25">Atas Reunião das Comissões</a></li>
<li><a href="?pag=T0RJPU9UYz1PRFE9T1RnPU56az1PVEE9T1RjPU9UZz1OMk09T1RBPU9XVT1ZVEE9T0dVPU9XVT0=">Atas Sessões</a></li>
<li><a href="?pag=T1RFPU9EUT1PVGc9T1RrPU9EWT1PV0U9TnpVPU9HVT1ZVEE9&pg=1">Pautas</a></li>
<li><a href="?pag=T0RjPU9UVT1PRGc9T1RZPU9XRT1PR009T1RVPU9HTT1PVEk9T0dNPU9HRT1ZVE09T1RJPVlURT1PVFE9T1RJPU9UVT1ZVEk9WVRVPU9XRT1ZVGc9T1RZPU9UZz1ZVGM9WVRnPQ==">Presença dos Vereadores nas Sessões</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Processo Legislativo</a>
</div>
<ul class="">
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=1">Indicações</a></li>
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=3">Requerimentos</a></li>
<li><a href="?pag=T0RVPU9UST1PRFk9T1dFPU9UST1PR009T1RVPU9XUT1PVGc9T1dVPQ==&&tp=2">Moções</a></li>
<li><a href="?pag=T1RFPU9UST1PVFU9T1RrPU9EWT1PVGs9T1RBPU9HRT1PV009T0dNPU9Uaz1PV009">Portarias</a></li>
<li><a href="?pag=T1RFPU9UVT1PVEk9T0dZPU9HRT1PV0k9T1RZPU9XTT1PV1E9T1dRPU9HTT1PV0U9T1RZPVlUTT1PVEE9T1RRPU9UST1ZVEk9&sitIn=8,4">Projetos em Tramitação</a></li>
<li><a href="?pag=T1RVPU9HTT1PVE09T1RRPU9UZz1PVGM9T1RrPU9UZz1PVE09T1RBPU9XWT1PV009WVRBPVlUTT1ZVEU9T1RJPU9XVT1PV009WVRjPU9UWT1PVGs9WVRZPVlXRT0=&sitNot=8,4">Projetos Tramitados</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Editais</a>
</div>
<ul class="">
<li><a href="?pag=T0RZPU9EYz1PR009T1RrPU9EWT1PVE09T0RZPU9UQT1PR1U9T1dZPU9HRT1ZVEU9T1RZPU9XWT1PV1U9WVRRPQ==&tipo=3">Licitações</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-3 col-xs-5 paddingLeft0px pdMarg">
<div class="topo_menu">
<a href="#" >Expediente</a>
</div>
<ul class="">
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=235">Expediente da Câmara</a></li>
<li><a href="?pag=TmpjPU9UST1PVFU9T1RJPU9XRT1PVE09T0RnPU9XST1PVEk9T1dFPU56RT1PR1U9T1RrPU9UUT1Oekk9WVRBPU9XWT1ZVEk9WVRZPU9UZz1ZVFE9&form=true">Fale Conosco</a></li>
<li><a href="?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=219">Telefones Úteis</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 ">
<div class="area_logo fleft">
<div class="endereco">
Avenida 3 de Maio, 1368<br>
Centro - Cx. Postal <br>
CEP 18.285-000 - Cesário Lange -SP<br>
Telefone: (15) 3246-1213<br><br>
<p><strong>Entre em contato com a Secretaria:</strong></p>
<p><strong>Email:</strong></p>
<p>eni@camaracesariolange.sp.gov.br</p>
<p><a href="mailto:paula@camaracesariolange.sp.gov.br">paula@camaracesariolange.sp.gov.br</a></p>
<p><strong>Entre em contato com o encarregado de dados:</strong></p>
E-mail: encarregadodedados@camaracesariolange.sp.gov.br<br><br>
</div>
<div style="">
<span class="fs12px" >Total de Visitas: 108383 ; | ; </span><span class="fs12px" >Online: 10</span>
</div>
<div class="h10px" ></div>
<div class="row" >
<div class="col-md-12 text-align-right">
<br>
<img src="images/acessibilidade.png" alt="Acessibilidade">
</div>
</div>
</div>
<div >
<a href="https://www.weblinesistemas.com/" target="_blank"><img id="logoWebline" src="https://www.weblinesistemas.com/imagens_camaras/webline_logo_no_fundo_15.png" border="0" alt="logo webline"></a>
</div>
<div class="h10px" ></div>
</div>
</div>
</div>
</div>
<!-- Nao fechar footer fecha no copyrigth-->
<div class="copy clear bgColorAzulescuro"><div class="container">2022 © Todos os direitos reservados</div></div>
</footer><style type="text/css">
.cookiealert {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
margin: 0 !important;
z-index: 999;
opacity: 0;
visibility: hidden;
border-radius: 0;
transform: translateY(100%);
transition: all 500ms ease-out;
color: #ecf0f1;
background: #212327;
}
.cookiealert.show {
opacity: 1;
visibility: visible;
transform: translateY(0%);
transition-delay: 1000ms;
}
.cookiealert a {
text-decoration: underline;
color: #337ab7 !important;
}
.cookiealert .acceptcookies {
margin-left: 10px;
vertical-align: baseline;
}
.btn-primary{
color: #fff !important;
background-color: #337ab7 !important;
border-color: #2e6da4 !important;
}
</style>
<!-- START Bootstrap-Cookie-Alert -->
<div class="alert text-center cookiealert" role="alert" >
<b>Nós usamos cookies para melhorar sua experiência de navegação no portal. Ao continuar você concorda com a nossa <a href="?pag=T1RFPU9UST1PR1k9T0dVPU9Uaz1PVEE9T0dFPU9HRT1ObU09T1dFPU9XRT1PVEE9T1RnPU9UZz1PVFE9WVRRPQ==" target="_blank">Política de cookies.</a>
<button type="button" class="btn btn-primary btn-sm acceptcookies">
Aceito
</button>
</b>
</div>
<!-- END Bootstrap-Cookie-Alert -->
<script type="text/javascript">
(function () {
"use strict";
var cookieAlert = document.querySelector(".cookiealert");
var acceptCookies = document.querySelector(".acceptcookies");
if (!cookieAlert) {
return;
}
cookieAlert.offsetHeight; // Force browser to trigger reflow
// Show the alert if we cant find the "acceptCookies" cookie
if (!getCookie("acceptCookies")) {
cookieAlert.classList.add("show");
}
// When clicking on the agree button, create a 1 year
// cookie to remember user's choice and close the banner
acceptCookies.addEventListener("click", function () {
setCookie("acceptCookies", true, 365);
cookieAlert.classList.remove("show");
// dispatch the accept event
window.dispatchEvent(new Event("cookieAlertAccept"));
$.ajax({
url: "indexAjax.php?pag=T1RRPU9EUT1PR1k9T1dJPU9EWT1ObUk9T0RnPU9HUT1PVGc9T1dVPU5tVT1PV009T1dNPU9XRT1PVGc9T1RZPVlUUT0=",
context: document.body
}).done(function() {
$( this ).addClass( "done" );
});
});
// Cookie functions from w3schools
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toUTCString();
if(location.protocol == 'https:'){
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/;SameSite=None;Secure";
}else{
document.cookie = cname + "=" + cvalue + ";" + expires + ";";
}
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') {
c = c.substring(1);
}
if (c.indexOf(name) === 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
})();
</script>
</body>]]>
|
62
| <![CDATA[<a class="acess-texto cpointer " data-sinal="-" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_diminui_texto.png"/>
<span>Texto menor</span>
</a>]]>
|
68
| <![CDATA[<a class="acess-texto cpointer " data-sinal="+" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/botao_aumenta_texto.png"/>
<span>Texto maior</span>
</a>]]>
|
74
| <![CDATA[<a class="cpointer acess-contraste" style="text-decoration:none;">
<img class="" src="https://www.weblinesistemas.com/acessibilidade/imagens/icone_contraste.png"/>
<span>Contraste ; ; ;</span>
</a>]]>
|
80
| <![CDATA[<a href="?pag=T1RjPU5tWT1PR009T0RjPU9UYz1PRGc9T1dFPQ==" style="text-decoration:none;">
<i class="fa fa-hand-peace-o" aria-hidden="true"></i>
<span>Tradução para Libras</span>
</a>]]>
|
141
| <![CDATA[<a href="?pag=T1RjPU5tWT1PR009T0RjPU9UYz1PRGc9T1dFPQ==" style="text-decoration:none;">
<i class="fa fa-hand-peace-o" aria-hidden="true"></i>
<span>Tradução para Libras</span>
</a>]]>
|
356
| <![CDATA[<img src="images/brasao.png" style="margin-top:11px;" class="img-responsive" alt="Cesário Lange" />]]>
|
498
| <![CDATA[<input style="width:100%; height:34px;" type="text" id="palavraChave" name="palavraChave" class="inputBuscador" placeholder="Digite o texto" />]]>
|
558
| <![CDATA[<div style="border-radius:4px;" class="box" >
<div class="" style="display:table;">
<ul class="listaVereadores visible-lg visible-md" ><!-- Para mostrar o presidente acima no desktop -->
<li class=" cpointer" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="maxWidth48porcent">
<div class="tituloBox">Vereadores</div>
<div class="w125px fs9px" >15° LEGISLATURA</div>
<span class='fs11px'>Presidente Atual</span><div class='fs11px'>LUIZ GONZAGA DOS SANTOS</div>
</li>
</ul>
<div class="clearfix"></div>
<ul class="listaVereadores" >
<li class="cpointer hidden-lg hidden-md" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=11&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" title="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" src="temp/f8317e7a93e5be03828350edb3825e4b____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=18&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" title="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" src="temp/3961f4c4e84594886a3c316a0aa20cf2____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=3&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ MATEUS PEDRO - Mateus Pedro" title="JOSÉ MATEUS PEDRO - Mateus Pedro" src="temp/c96de5b71362b2009184a7d24014352a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=37&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" title="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" src="temp/96b3c4ac41f8027dd08fbf8c18cebd9f____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=19&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSIAS ROSA NETO - JOSIAS" title="JOSIAS ROSA NETO - JOSIAS" src="temp/95a9e0370254af04c6879ab3bf1522f7____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=20&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUCIANO CÉSAR DE TOLEDO - LUCIANO" title="LUCIANO CÉSAR DE TOLEDO - LUCIANO" src="temp/314acbf9bc3a7d695752f68dad51778e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=21&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" title="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" src="temp/2a09770cb0d732686977f0b0d76d2da8____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=9&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="OSMAR TREVISAN - Osmar Trevisan" title="OSMAR TREVISAN - Osmar Trevisan" src="temp/40502aa4f1a52951bfbffcda2511ec87____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=6&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ROQUE MANES - Roque Manes" title="ROQUE MANES - Roque Manes" src="temp/8d093e880fba1bc78b2643512187da6a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=17&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" title="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" src="temp/cd7c5daf8d4d9bd279abb3a5470ac98e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
</ul>
</div>
</div>]]>
|
559
| <![CDATA[<div class="" style="display:table;">
<ul class="listaVereadores visible-lg visible-md" ><!-- Para mostrar o presidente acima no desktop -->
<li class=" cpointer" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="maxWidth48porcent">
<div class="tituloBox">Vereadores</div>
<div class="w125px fs9px" >15° LEGISLATURA</div>
<span class='fs11px'>Presidente Atual</span><div class='fs11px'>LUIZ GONZAGA DOS SANTOS</div>
</li>
</ul>
<div class="clearfix"></div>
<ul class="listaVereadores" >
<li class="cpointer hidden-lg hidden-md" ><!-- Primeiro Mostra o presidente -->
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=23&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=11&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" title="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" src="temp/f8317e7a93e5be03828350edb3825e4b____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=18&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" title="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" src="temp/3961f4c4e84594886a3c316a0aa20cf2____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=3&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ MATEUS PEDRO - Mateus Pedro" title="JOSÉ MATEUS PEDRO - Mateus Pedro" src="temp/c96de5b71362b2009184a7d24014352a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=37&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" title="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" src="temp/96b3c4ac41f8027dd08fbf8c18cebd9f____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=19&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="JOSIAS ROSA NETO - JOSIAS" title="JOSIAS ROSA NETO - JOSIAS" src="temp/95a9e0370254af04c6879ab3bf1522f7____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=20&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUCIANO CÉSAR DE TOLEDO - LUCIANO" title="LUCIANO CÉSAR DE TOLEDO - LUCIANO" src="temp/314acbf9bc3a7d695752f68dad51778e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=21&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" title="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" src="temp/2a09770cb0d732686977f0b0d76d2da8____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=9&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="OSMAR TREVISAN - Osmar Trevisan" title="OSMAR TREVISAN - Osmar Trevisan" src="temp/40502aa4f1a52951bfbffcda2511ec87____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=6&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="ROQUE MANES - Roque Manes" title="ROQUE MANES - Roque Manes" src="temp/8d093e880fba1bc78b2643512187da6a____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
<li class="cpointer">
<a href="?pag=T1RjPU9EZz1PVFU9T0dFPU9EWT1PR0k9T1RZPU9XST0=&idver=17&idleg=116" target="_parent" class="vereador_lista">
<img style="border-radius:2px; height:69px;" alt="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" title="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" src="temp/cd7c5daf8d4d9bd279abb3a5470ac98e____vereadores.jpg" class="img-responsive" alt="" />
</a>
</li>
</ul>
</div>]]>
|
564
| <![CDATA[<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />]]>
|
578
| <![CDATA[<img style="border-radius:2px; height:69px;" src="temp/21ff10803c3c6e69fd6fdb9167d4bbba_presidente.jpg" alt="LUIZ GONZAGA DOS SANTOS - PODE" title="LUIZ GONZAGA DOS SANTOS - PODE" class="img-responsive" alt="" />]]>
|
584
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" title="ALESSANDRO DONIZETE PAES VIEIRA - Alessandro da Santa Casa" src="temp/f8317e7a93e5be03828350edb3825e4b____vereadores.jpg" class="img-responsive" alt="" />]]>
|
590
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" title="DAVI RODRIGUES MACHADO - DAVI DA FARMÁCIA" src="temp/3961f4c4e84594886a3c316a0aa20cf2____vereadores.jpg" class="img-responsive" alt="" />]]>
|
596
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="JOSÉ MATEUS PEDRO - Mateus Pedro" title="JOSÉ MATEUS PEDRO - Mateus Pedro" src="temp/c96de5b71362b2009184a7d24014352a____vereadores.jpg" class="img-responsive" alt="" />]]>
|
602
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" title="JOSÉ OTÁVIO OLIVEIRA DA SILVA - NEGUINHO DO ÔNIBUS" src="temp/96b3c4ac41f8027dd08fbf8c18cebd9f____vereadores.jpg" class="img-responsive" alt="" />]]>
|
608
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="JOSIAS ROSA NETO - JOSIAS" title="JOSIAS ROSA NETO - JOSIAS" src="temp/95a9e0370254af04c6879ab3bf1522f7____vereadores.jpg" class="img-responsive" alt="" />]]>
|
614
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="LUCIANO CÉSAR DE TOLEDO - LUCIANO" title="LUCIANO CÉSAR DE TOLEDO - LUCIANO" src="temp/314acbf9bc3a7d695752f68dad51778e____vereadores.jpg" class="img-responsive" alt="" />]]>
|
620
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" title="LUIZ ANTONIO ANTUNES - LUIZ ANTONIO BOLO" src="temp/2a09770cb0d732686977f0b0d76d2da8____vereadores.jpg" class="img-responsive" alt="" />]]>
|
626
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="OSMAR TREVISAN - Osmar Trevisan" title="OSMAR TREVISAN - Osmar Trevisan" src="temp/40502aa4f1a52951bfbffcda2511ec87____vereadores.jpg" class="img-responsive" alt="" />]]>
|
632
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="ROQUE MANES - Roque Manes" title="ROQUE MANES - Roque Manes" src="temp/8d093e880fba1bc78b2643512187da6a____vereadores.jpg" class="img-responsive" alt="" />]]>
|
638
| <![CDATA[<img style="border-radius:2px; height:69px;" alt="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" title="RUBENS CUBAS DO AMARAL - RUBINHO LEITEIRO" src="temp/cd7c5daf8d4d9bd279abb3a5470ac98e____vereadores.jpg" class="img-responsive" alt="" />]]>
|
651
| <![CDATA[<a href="?pag=T1RFPU9EUT1PVGc9T1RrPU9EWT1PV0U9TnpVPU9HVT1ZVEE9" style="text-decoration:none; cursor:pointer;">
<div class="col-md-12 mapa_site topoBoxSessao btnProximaBackground">
Próxima Sessão
</div>
<div class="proximasessaoDiv" >
<div class="h10px"></div>
<p class='linhaSessao' style='padding-top:20px;margin:10px;border-bottom: 1px solid #ddd;'>TODAS AS 1ª E 3ª QUINTAS DO MÊS </p><p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>PRÓXIMAS SESSÕES DO MÊS </p><p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>16ª SESSÃO ORDINÁRIA(15/09 - 20:00 HORAS)</p> <div class="h10px"></div>
</div>
</a>]]>
|
658
| <![CDATA[<p class='linhaSessao' style='padding-top:20px;margin:10px;border-bottom: 1px solid #ddd;'>TODAS AS 1ª E 3ª QUINTAS DO MÊS </p>]]>
|
658
| <![CDATA[<p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>PRÓXIMAS SESSÕES DO MÊS </p>]]>
|
658
| <![CDATA[<p class='linhaSessao' style='border-bottom: 1px solid #ddd;margin:10px;'>16ª SESSÃO ORDINÁRIA(15/09 - 20:00 HORAS)</p>]]>
|
676
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_banner/botao_coronavirus.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;" >]]>
|
683
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado3/tratamento_dados_lgpd_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
690
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/webmail_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
697
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/agenda_event_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
704
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado2/mais_transparencia_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
711
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_audio_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
718
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_foto_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
725
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_video_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
732
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/transmissao_verde_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
739
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_banner/e-sic-duplo.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
746
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_clean/contas_executivo_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
753
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado2/perguntas_frequentes_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
760
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/ouvidoria_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
799
| <![CDATA[<div class="modal-dialog modal-lg" style="width: fit-content;">
<button type="button" class="close hidden" data-dismiss="modal" aria-hidden="true">× </button>
<div class="modal-content">
<div class="modal-body">
<img class = "img-responsive" src="https://www.camaracesariolange.sp.gov.br/arquivos_site/sic_images/sem_imagem.jpg" alt="" />
</div>
</div>
</div>]]>
|
816
| <![CDATA[<div class="tituloTextoVereador text-center" style="margin-top:5px; font-size: 30px;">
</div>]]>
|
824
| <![CDATA[<div style="/*display:table;*/width:100%;">
<style>
.MsoNormalTable {
width: 100% !important;
max-width: 100% !important;
table-layout: fixed;
}
.MsoNormalTable > td {
width: fit-content !important;
word-wrap: break-word;
}
#cont-noticia > span, #cont-noticia > p {
font-family: auto;
}
.MsoNormal > span {
position: initial !important;
}
</style><div id="cont-noticia" ><html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 15">
<meta name=Originator content="Microsoft Word 15">
<link rel=File-List href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/filelist.xml">
<link rel=Edit-Time-Data href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><o:SmartTagType
namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="metricconverter"/>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>PLENARIO</o:Author>
<o:LastAuthor>Luiz Eduardo Takemi Shibata</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>95</o:TotalTime>
<o:Created>2021-02-17T14:20:00Z</o:Created>
<o:LastSaved>2021-02-17T14:20:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>820</o:Words>
<o:Characters>4428</o:Characters>
<o:Lines>36</o:Lines>
<o:Paragraphs>10</o:Paragraphs>
<o:CharactersWithSpaces>5238</o:CharactersWithSpaces>
<o:Version>16.00</o:Version>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=themeData href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/themedata.thmx">
<link rel=colorSchemeMapping href="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/colorschememapping.xml">
<!--[if gte mso 9]><xml>
<w:WordDocument>
<w:TrackMoves>false</w:TrackMoves>
<w:TrackFormatting/>
<w:HyphenationZone>21</w:HyphenationZone>
<w:PunctuationKerning/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>PT-BR</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:UseWord2010TableStyleRules/>
<w:DontGrowAutofit/>
<w:SplitPgBreakAndParaMark/>
<w:EnableOpenTypeKerning/>
<w:DontFlipMirrorIndents/>
<w:OverrideTableStyleHps/>
</w:Compatibility>
<m:mathPr>
<m:mathFont m:val="Cambria Math"/>
<m:brkBin m:val="before"/>
<m:brkBinSub m:val="--"/>
<m:smallFrac m:val="off"/>
<m:dispDef/>
<m:lMargin m:val="0"/>
<m:rMargin m:val="0"/>
<m:defJc m:val="centerGroup"/>
<m:wrapIndent m:val="1440"/>
<m:intLim m:val="subSup"/>
<m:naryLim m:val="undOvr"/>
</m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
DefSemiHidden="false" DefQFormat="false" DefPriority="99"
LatentStyleCount="371">
<w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index 9"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 1"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 2"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 3"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 4"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 5"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 6"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 7"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 8"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" Name="toc 9"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footnote text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="header"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footer"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="index heading"/>
<w:LsdException Locked="false" Priority="35" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="caption"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="table of figures"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="envelope address"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="envelope return"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="footnote reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="line number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="page number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="endnote reference"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="endnote text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="table of authorities"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="macro"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="toa heading"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Bullet 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Number 5"/>
<w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Closing"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Signature"/>
<w:LsdException Locked="false" Priority="1" SemiHidden="true"
UnhideWhenUsed="true" Name="Default Paragraph Font"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="List Continue 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Message Header"/>
<w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Salutation"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Date"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text First Indent"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text First Indent 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Note Heading"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Body Text Indent 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Block Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Hyperlink"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="FollowedHyperlink"/>
<w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
<w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Document Map"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Plain Text"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="E-mail Signature"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Top of Form"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Bottom of Form"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal (Web)"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Acronym"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Address"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Cite"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Code"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Definition"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Keyboard"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Preformatted"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Sample"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Typewriter"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="HTML Variable"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Normal Table"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="annotation subject"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="No List"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Outline List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Simple 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Classic 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Colorful 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Columns 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Grid 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 4"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 5"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 6"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 7"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table List 8"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table 3D effects 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Contemporary"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Elegant"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Professional"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Subtle 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Subtle 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 1"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 2"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Web 3"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Balloon Text"/>
<w:LsdException Locked="false" Priority="59" Name="Table Grid"/>
<w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
Name="Table Theme"/>
<w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>
<w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
<w:LsdException Locked="false" Priority="61" Name="Light List"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
<w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
<w:LsdException Locked="false" Priority="34" QFormat="true"
Name="List Paragraph"/>
<w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
<w:LsdException Locked="false" Priority="30" QFormat="true"
Name="Intense Quote"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
<w:LsdException Locked="false" Priority="19" QFormat="true"
Name="Subtle Emphasis"/>
<w:LsdException Locked="false" Priority="21" QFormat="true"
Name="Intense Emphasis"/>
<w:LsdException Locked="false" Priority="31" QFormat="true"
Name="Subtle Reference"/>
<w:LsdException Locked="false" Priority="32" QFormat="true"
Name="Intense Reference"/>
<w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
<w:LsdException Locked="false" Priority="37" SemiHidden="true"
UnhideWhenUsed="true" Name="Bibliography"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
<w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
<w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
<w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
<w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
<w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
<w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
<w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
<w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
<w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 1"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 2"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 3"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 4"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 5"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="46"
Name="Grid Table 1 Light Accent 6"/>
<w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
<w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
<w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
<w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
<w:LsdException Locked="false" Priority="51"
Name="Grid Table 6 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="52"
Name="Grid Table 7 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
<w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
<w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 1"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 1"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 2"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 2"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 3"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 3"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 4"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 4"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 5"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 5"/>
<w:LsdException Locked="false" Priority="46"
Name="List Table 1 Light Accent 6"/>
<w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
<w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
<w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
<w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
<w:LsdException Locked="false" Priority="51"
Name="List Table 6 Colorful Accent 6"/>
<w:LsdException Locked="false" Priority="52"
Name="List Table 7 Colorful Accent 6"/>
</w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;
mso-font-charset:2;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:1;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:0 0 0 0 0 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-536870145 1073786111 1 0 415 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-link:"Texto de balão Char";
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-fareast-language:EN-US;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
span.TextodebaloChar
{mso-style-name:"Texto de balão Char";
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Texto de balão";
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-ascii-font-family:Tahoma;
mso-hansi-font-family:Tahoma;
mso-bidi-font-family:Tahoma;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
.MsoPapDefault
{mso-style-type:export-only;
margin-bottom:10.0pt;
line-height:115%;}
@page WordSection1
{size:595.3pt 841.9pt;
margin:70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin:35.4pt;
mso-footer-margin:35.4pt;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
@list l0
{mso-list-id:1902074;
mso-list-type:hybrid;
mso-list-template-ids:-1993993762 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1
{mso-list-id:376248774;
mso-list-type:hybrid;
mso-list-template-ids:-877229014 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2
{mso-list-id:1246382606;
mso-list-type:hybrid;
mso-list-template-ids:-2104466224 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3
{mso-list-id:1838495926;
mso-list-type:hybrid;
mso-list-template-ids:272137502 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4
{mso-list-id:2026056994;
mso-list-type:hybrid;
mso-list-template-ids:-774859062 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Tabela normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin-top:0cm;
mso-para-margin-right:0cm;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-fareast-language:EN-US;}
table.MsoTableGrid
{mso-style-name:"Tabela com grade";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-priority:59;
mso-style-unhide:no;
border:solid windowtext 1.0pt;
mso-border-alt:solid windowtext .5pt;
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-border-insideh:.5pt solid windowtext;
mso-border-insidev:.5pt solid windowtext;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-fareast-language:EN-US;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=PT-BR style='tab-interval:35.4pt'>
<div class=WordSection1>
<p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;line-height:115%;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<div align=center>
<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0 width=0
style='width:459.95pt;border-collapse:collapse;border:none;mso-yfti-tbllook:
1664;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:none;mso-border-insidev:
none'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:5;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:6;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:9;height:69.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;height:50.4pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;height:41.35pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;height:34.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;height:34.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:16;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:17;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:18;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:19;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:20;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:21;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:22;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:23;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:24;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:25;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:26;mso-yfti-lastrow:yes;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;font-family:
"Times New Roman",serif'><o:p> ;</o:p></span></p>
</div>
</body>
</html>
</div> <script>
$(".MsoNormalTable").attr("width","100%");
$(".MsoNormalTable").find('td').attr("width","");
$(".MsoNormalTable").find('td').attr("nowrap",null);
</script>
<script>
$( "img[vshapes='_x0000_t75']" ).attr('src','');
</script>
<script>
$( "img[vshapes='Imagem_x0020_2']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_3']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_4']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_15']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_5']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_7']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_8']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_9']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_16']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_17']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_18']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_19']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_24']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_25']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_20']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_21']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_22']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_12']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_23']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_26']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_13']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_31']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_11']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_29']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_30']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_14']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg');
</script>
<script>
$( "img[vshapes='Imagem_x0020_10']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg');
</script>
</div>]]>
|
2093
| <![CDATA[<body lang=PT-BR style='tab-interval:35.4pt'>
<div class=WordSection1>
<p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;line-height:115%;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<div align=center>
<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0 width=0
style='width:459.95pt;border-collapse:collapse;border:none;mso-yfti-tbllook:
1664;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:none;mso-border-insidev:
none'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:5;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:6;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:9;height:69.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;height:50.4pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;height:41.35pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;height:34.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;height:34.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:16;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:17;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:18;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:19;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:20;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:21;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:22;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:23;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:24;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:25;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:26;mso-yfti-lastrow:yes;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;font-family:
"Times New Roman",serif'><o:p> ;</o:p></span></p>
</div>
</body>]]>
|
2097
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;line-height:115%;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2097
| <![CDATA[<span
style='font-size:12.0pt;line-height:115%;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2102
| <![CDATA[<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0 width=0
style='width:459.95pt;border-collapse:collapse;border:none;mso-yfti-tbllook:
1664;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:none;mso-border-insidev:
none'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:5;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:6;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:9;height:69.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;height:50.4pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;height:41.35pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;height:34.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;height:34.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:16;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:17;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:18;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:19;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:20;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:21;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:22;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:23;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:24;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:25;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:26;mso-yfti-lastrow:yes;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>
</table>]]>
|
2106
| <![CDATA[<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2107
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
</td>]]>
|
2109
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2110
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2110
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2112
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2113
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2113
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2115
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b></p>]]>
|
2116
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span></b>]]>
|
2116
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador José
Vieira de Miranda<o:p></o:p></span>]]>
|
2119
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span></p>]]>
|
2120
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2122
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2122
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2124
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Primeiro Presidente da 1ª Legislatura<o:p></o:p></span>]]>
|
2126
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span></p>]]>
|
2127
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1960 a" w:st="on">1960 a</st1:metricconverter>
31 de dezembro de 1960<o:p></o:p></span>]]>
|
2130
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span></p>]]>
|
2131
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2133
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2133
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2135
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo primeiro Presidente da 3ª Legislatura<o:p></o:p></span>]]>
|
2137
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span></p>]]>
|
2138
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1971 a" w:st="on">1971 a</st1:metricconverter>
31 de janeiro de 1973<o:p></o:p></span>]]>
|
2141
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>]]>
|
2142
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2144
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2144
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2146
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 4ª Legislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span>]]>
|
2150
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2152
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2153
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Imagem_x0020_2" o:spid="_x0000_i1051" type="#_x0000_t75"
style='width:135.75pt;height:173.25pt;visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg" o:title="JOSE VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2"></span>]]>
|
2178
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=181 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image002.jpg" vshapes="Imagem_x0020_2">]]>
|
2179
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2181
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2182
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2186
| <![CDATA[<tr style='mso-yfti-irow:1;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>
</tr>]]>
|
2187
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2189
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2190
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_3" o:spid="_x0000_i1050"
type="#_x0000_t75" style='width:133.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg" o:title="GUMERCINDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3"></span>]]>
|
2196
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=178 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image004.jpg" vshapes="Imagem_x0020_3">]]>
|
2197
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2199
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2200
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2203
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
</td>]]>
|
2205
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2206
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2206
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2208
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2209
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2209
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2211
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2212
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2212
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2214
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b></p>]]>
|
2215
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span></b>]]>
|
2215
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador
Gumercindo de Camargo Barros<o:p></o:p></span>]]>
|
2218
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span></p>]]>
|
2219
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2221
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2221
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2223
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Segundo Presidente: da 1º Legislatura<o:p></o:p></span>]]>
|
2225
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span></p>]]>
|
2226
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1961 a" w:st="on">1961 a</st1:metricconverter>
31 de dezembro de 1961<o:p></o:p></span>]]>
|
2229
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span></p>]]>
|
2230
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2232
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2232
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2234
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sexto Presidente da 2ª Legislatura<o:p></o:p></span>]]>
|
2236
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>]]>
|
2237
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1965 a" w:st="on">1965 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span>]]>
|
2242
| <![CDATA[<tr style='mso-yfti-irow:2;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
2243
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2245
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b></p>]]>
|
2246
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span></b>]]>
|
2246
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Abel
Antunes Neto<o:p></o:p></span>]]>
|
2249
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span></p>]]>
|
2250
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2252
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2252
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2254
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Terceiro Presidente da 1ª Legislatura<o:p></o:p></span>]]>
|
2256
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span></p>]]>
|
2257
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1962 a" w:st="on">1962 a</st1:metricconverter>
31 de dezembro de 1962<o:p></o:p></span>]]>
|
2260
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span></p>]]>
|
2261
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2263
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2263
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2265
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quinto Presidente da 2ª Legislatura<o:p></o:p></span>]]>
|
2267
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span></p>]]>
|
2268
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1964 a" w:st="on">1964 a</st1:metricconverter>
31 de dezembro de 1965<o:p></o:p></span>]]>
|
2271
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span></p>]]>
|
2272
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2274
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2274
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2276
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Sétimo Presidente 2ª Legislatura<o:p></o:p></span>]]>
|
2278
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span></p>]]>
|
2279
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1966 a" w:st="on">1966 a</st1:metricconverter>
31 de dezembro de 1966<o:p></o:p></span>]]>
|
2282
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span></p>]]>
|
2283
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2285
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2285
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2287
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 3ªLegislatura de <st1:metricconverter
ProductID="1969 a" w:st="on">1969 a</st1:metricconverter> 1973<o:p></o:p></span>]]>
|
2290
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2291
| <![CDATA[<span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2293
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
2295
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2296
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_4" o:spid="_x0000_i1049"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg" o:title="ABEL"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4"></span>]]>
|
2302
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image006.jpg" vshapes="Imagem_x0020_4">]]>
|
2303
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2307
| <![CDATA[<tr style='mso-yfti-irow:3;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2308
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2310
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2311
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_15" o:spid="_x0000_i1048"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg" o:title="ORLANDO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15"></span>]]>
|
2317
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image008.jpg" vshapes="Imagem_x0020_15">]]>
|
2318
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2320
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2321
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2324
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2326
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2327
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2327
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2329
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2330
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2330
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2332
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2333
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2333
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2335
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2336
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2336
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2338
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b></p>]]>
|
2339
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span></b>]]>
|
2339
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Orlando
Batista de Almeida<o:p></o:p></span>]]>
|
2342
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span></p>]]>
|
2343
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2345
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2345
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2347
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Quarto Presidente da 1ªlegislatura<o:p></o:p></span>]]>
|
2349
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span></p>]]>
|
2350
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1963 a" w:st="on">1963 a</st1:metricconverter>
31 de dezembro de 1963<o:p></o:p></span>]]>
|
2353
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2354
| <![CDATA[<span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2357
| <![CDATA[<tr style='mso-yfti-irow:4;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2358
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2360
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2361
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2361
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2363
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2364
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2364
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2366
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2367
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2367
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2369
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2370
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2370
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2372
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b></p>]]>
|
2373
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span></b>]]>
|
2373
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Natan
Pires da Silva<o:p></o:p></span>]]>
|
2376
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span></p>]]>
|
2377
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2379
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2379
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2381
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Oitavo Presidente da 2ªLegislatura<o:p></o:p></span>]]>
|
2383
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span></p>]]>
|
2384
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de janeiro de <st1:metricconverter ProductID="1967 a" w:st="on">1967 a</st1:metricconverter>
31 de dezembro de 1967<o:p></o:p></span>]]>
|
2387
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2388
| <![CDATA[<span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2390
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2392
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2393
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_5" o:spid="_x0000_i1047"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg" o:title="NATAN PIRES"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5"></span>]]>
|
2399
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image010.jpg" vshapes="Imagem_x0020_5">]]>
|
2400
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2402
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2403
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2407
| <![CDATA[<tr style='mso-yfti-irow:5;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2408
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2410
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2411
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_7" o:spid="_x0000_i1046"
type="#_x0000_t75" style='width:123.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg" o:title="GABRIEL DOS REIS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7"></span>]]>
|
2417
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=165 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image012.jpg" vshapes="Imagem_x0020_7">]]>
|
2418
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2420
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2421
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2424
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2426
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2427
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2427
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2429
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2430
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2430
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2432
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2433
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2433
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2435
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2436
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2436
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2438
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b></p>]]>
|
2439
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span></b>]]>
|
2439
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Gabriel
dos Reis<o:p></o:p></span>]]>
|
2442
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span></p>]]>
|
2443
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2445
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2445
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2447
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Nono Presidente da 3ªlegislatura<o:p></o:p></span>]]>
|
2449
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span></p>]]>
|
2450
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1969 a" w:st="on">1969 a</st1:metricconverter>
29 de fevereiro de 1970<o:p></o:p></span>]]>
|
2453
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2454
| <![CDATA[<span style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2457
| <![CDATA[<tr style='mso-yfti-irow:6;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2458
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2460
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2461
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2461
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2463
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2464
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2464
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2466
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2467
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2467
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2469
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b></p>]]>
|
2470
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span></b>]]>
|
2470
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Alberto
Martins Ribeiro<o:p></o:p></span>]]>
|
2473
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span></p>]]>
|
2474
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2476
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2476
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2478
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Presidente da 3ªLegislatura<o:p></o:p></span>]]>
|
2480
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span></p>]]>
|
2481
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de março de <st1:metricconverter ProductID="1970 a" w:st="on">1970 a</st1:metricconverter>
31 de janeiro de 1971<o:p></o:p></span>]]>
|
2484
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span></p>]]>
|
2485
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2487
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2487
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2489
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador suplente na 4ªLegislatura de <st1:metricconverter
ProductID="1973 a" w:st="on">1973 a</st1:metricconverter> 1977<o:p></o:p></span>]]>
|
2492
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2493
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2496
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2498
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2499
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_8" o:spid="_x0000_i1045"
type="#_x0000_t75" style='width:139.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg" o:title="ALBERTO MARTINS"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8"></span>]]>
|
2505
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=186 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image014.jpg" vshapes="Imagem_x0020_8">]]>
|
2506
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2508
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2509
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2513
| <![CDATA[<tr style='mso-yfti-irow:7;height:3.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>
</tr>]]>
|
2514
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2516
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span><span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
2517
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_9" o:spid="_x0000_i1044"
type="#_x0000_t75" style='width:142.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg" o:title="OSWALDO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9"></span>]]>
|
2523
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=190 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image016.jpg" vshapes="Imagem_x0020_9">]]>
|
2524
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
2526
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2527
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2530
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:3.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>
</td>]]>
|
2532
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2533
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2533
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2535
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2536
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2536
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2538
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2539
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2539
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2541
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2542
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2542
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2544
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b></p>]]>
|
2545
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span></b>]]>
|
2545
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Osvaldo
Vieira de Camargo<o:p></o:p></span>]]>
|
2548
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span></p>]]>
|
2549
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2551
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2551
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2553
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo segundo Presidente da 4ªLegislatura<o:p></o:p></span>]]>
|
2555
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span></p>]]>
|
2556
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro a 31 de dezembro de 1974<o:p></o:p></span>]]>
|
2558
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span></p>]]>
|
2559
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2561
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2561
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2563
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 5ªLegislatura de <st1:metricconverter
ProductID="1977 a" w:st="on">1977 a</st1:metricconverter> 1983<o:p></o:p></span>]]>
|
2568
| <![CDATA[<tr style='mso-yfti-irow:8;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>]]>
|
2569
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2571
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2572
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2572
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2574
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2575
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2575
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2577
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b></p>]]>
|
2578
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span></b>]]>
|
2578
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
de Camargo Barros<o:p></o:p></span>]]>
|
2581
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span></p>]]>
|
2582
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2584
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2584
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2586
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo terceiro Presidente da 4ªLegislatura<o:p></o:p></span>]]>
|
2588
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span></p>]]>
|
2589
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1975 a" w:st="on">1975 a</st1:metricconverter><span
style='mso-spacerun:yes'> </span>31 de janeiro de 1977<o:p></o:p></span>]]>
|
2590
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
2592
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span></p>]]>
|
2593
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2595
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2595
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2597
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador Suplente na 3ªLegislatura<o:p></o:p></span>]]>
|
2599
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2600
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2604
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>]]>
|
2606
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>]]>
|
2607
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span></b>]]>
|
2607
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_16"
o:spid="_x0000_i1043" type="#_x0000_t75" style='width:2in;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg" o:title="ROQUE DE CAMARGO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16"></span>]]>
|
2613
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=192 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image018.jpg" vshapes="Imagem_x0020_16">]]>
|
2614
| <![CDATA[<b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b>]]>
|
2615
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span>]]>
|
2617
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2618
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2618
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2622
| <![CDATA[<tr style='mso-yfti-irow:9;height:69.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2623
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2625
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span></p>]]>
|
2626
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_17" o:spid="_x0000_i1042"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg" o:title="MARCIO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17"><o:p></o:p></span>]]>
|
2632
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image020.jpg" vshapes="Imagem_x0020_17">]]>
|
2634
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2635
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2639
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:69.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2641
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2642
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2642
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2644
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b></p>]]>
|
2645
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span></b>]]>
|
2645
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Márcio
Antônio de Camargo Barros<o:p></o:p></span>]]>
|
2648
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span></p>]]>
|
2649
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2651
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2651
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2653
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Quarto Presidente da 5ªLegislatura<o:p></o:p></span>]]>
|
2655
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span></p>]]>
|
2656
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1977 a" w:st="on">1977 a</st1:metricconverter>
31 de janeiro de 1979<o:p></o:p></span>]]>
|
2659
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span></p>]]>
|
2660
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2662
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2662
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2664
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sexto Presidente da 5ªLegislatura<o:p></o:p></span>]]>
|
2666
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span></p>]]>
|
2667
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1981 a" w:st="on">1981 a</st1:metricconverter>
31 de janeiro de 1983<o:p></o:p></span>]]>
|
2670
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2671
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2675
| <![CDATA[<tr style='mso-yfti-irow:10;height:50.4pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>]]>
|
2676
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2678
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2679
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2679
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2682
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2683
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2683
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2686
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2687
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2687
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2690
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>]]>
|
2691
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span></b>]]>
|
2691
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Roberto Calaça Vieira</span>]]>
|
2693
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span>]]>
|
2696
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span></p>]]>
|
2697
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2699
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2700
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2701
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
Quinto Presidente da 5ªLegislatura<o:p></o:p></span>]]>
|
2704
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span></p>]]>
|
2705
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1979 a" w:st="on">1979 a</st1:metricconverter> 31 de janeiro de
1981<o:p></o:p></span>]]>
|
2709
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span></p>]]>
|
2710
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2712
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2713
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2714
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 6ªLegislatura de <st1:metricconverter ProductID="1983 a" w:st="on">1983 a</st1:metricconverter>
1988<o:p></o:p></span>]]>
|
2718
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2719
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2723
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>]]>
|
2725
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>]]>
|
2726
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span></b>]]>
|
2726
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_18"
o:spid="_x0000_i1041" type="#_x0000_t75" style='width:141.75pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg" o:title="ROBERTO CALACA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18"></span>]]>
|
2732
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=189 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image022.jpg" vshapes="Imagem_x0020_18">]]>
|
2733
| <![CDATA[<b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b>]]>
|
2734
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span>]]>
|
2736
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2737
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2737
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2741
| <![CDATA[<tr style='mso-yfti-irow:11;height:41.35pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2742
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2744
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span></p>]]>
|
2745
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_19" o:spid="_x0000_i1040"
type="#_x0000_t75" style='width:129pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg" o:title="ANTONIO VIEIRA"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19"><o:p></o:p></span>]]>
|
2751
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=172 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image024.jpg" vshapes="Imagem_x0020_19">]]>
|
2753
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2754
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2758
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:41.35pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2760
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2761
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2761
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2763
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2764
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2764
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2766
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2767
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2767
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2769
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2770
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2770
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2772
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b></p>]]>
|
2773
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span></b>]]>
|
2773
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Antônio
Vieira de Miranda<o:p></o:p></span>]]>
|
2776
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>]]>
|
2777
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2779
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2779
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2781
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Sétimo presidente da 6ªlegislatura <b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span>]]>
|
2782
| <![CDATA[<b
style='mso-bidi-font-weight:normal'><o:p></o:p></b>]]>
|
2784
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>]]>
|
2785
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de fevereiro de <st1:metricconverter
ProductID="1983 a" w:st="on">1983 a</st1:metricconverter> 31 de janeiro de
1985<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span>]]>
|
2785
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
2788
| <![CDATA[<b style='mso-bidi-font-weight:normal'><o:p></o:p></b>]]>
|
2789
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
2790
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2794
| <![CDATA[<tr style='mso-yfti-irow:12;height:50.75pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>]]>
|
2795
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2797
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2798
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2798
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2801
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2802
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2802
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2805
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b></p>]]>
|
2806
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span></b>]]>
|
2806
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Francisco Mendes Castanho<o:p></o:p></span>]]>
|
2809
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span></p>]]>
|
2810
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2812
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2813
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2814
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Décimo
oitavo Presidente da 6ªLegislatura<o:p></o:p></span>]]>
|
2817
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span></p>]]>
|
2818
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'>De 1º de fevereiro de <st1:metricconverter
ProductID="1985 a" w:st="on">1985 a</st1:metricconverter> 31 de janeiro de
1987<o:p></o:p></span>]]>
|
2822
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span></p>]]>
|
2823
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2825
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2826
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2827
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 4ªlegislatura de <st1:metricconverter ProductID="1973 a" w:st="on">1973 a</st1:metricconverter>
1977 e na 6ªLegislatura de 1983 a1988<o:p></o:p></span>]]>
|
2831
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2832
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2836
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:50.75pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>]]>
|
2838
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>]]>
|
2839
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span></b>]]>
|
2839
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_24"
o:spid="_x0000_i1039" type="#_x0000_t75" style='width:146.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg" o:title="FRANCISCO ANTONIO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24"></span>]]>
|
2845
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=195 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image026.jpg" vshapes="Imagem_x0020_24">]]>
|
2846
| <![CDATA[<b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b>]]>
|
2847
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span>]]>
|
2849
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2850
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2850
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2854
| <![CDATA[<tr style='mso-yfti-irow:13;height:34.6pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>]]>
|
2855
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2857
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b><span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>]]>
|
2858
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span></b>]]>
|
2858
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_25"
o:spid="_x0000_i1038" type="#_x0000_t75" style='width:140.25pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg" o:title="AIRTONRUDI"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25"></span>]]>
|
2864
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=187 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image028.jpg" vshapes="Imagem_x0020_25">]]>
|
2865
| <![CDATA[<span
style='font-size:16.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p></o:p></span>]]>
|
2868
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2869
| <![CDATA[<span style='font-size:16.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2873
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.6pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>]]>
|
2875
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2876
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2876
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2878
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2879
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2879
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2881
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2882
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2882
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2884
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b></p>]]>
|
2885
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span></b>]]>
|
2885
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Airton
Rudi<o:p></o:p></span>]]>
|
2888
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span></p>]]>
|
2889
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2891
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2891
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2893
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Décimo Nono Presidente da 6ªLegislatura<o:p></o:p></span>]]>
|
2895
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span></p>]]>
|
2896
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'>De
1º de fevereiro de <st1:metricconverter ProductID="1987 a" w:st="on">1987 a</st1:metricconverter>
31 de dezembro de 1988<o:p></o:p></span>]]>
|
2899
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2900
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2900
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2904
| <![CDATA[<tr style='mso-yfti-irow:14;height:34.2pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>
</tr>]]>
|
2905
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2907
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2908
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2908
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2911
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2912
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2912
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2915
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
2916
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
2916
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
2919
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b></p>]]>
|
2920
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span></b>]]>
|
2920
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Aristeu Jóia<o:p></o:p></span>]]>
|
2923
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span></p>]]>
|
2924
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2926
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2927
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2928
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Presidente da 7ªlegislatura<o:p></o:p></span>]]>
|
2931
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span></p>]]>
|
2932
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1989 a" w:st="on">1989 a</st1:metricconverter> 31 de dezembro de
1990<o:p></o:p></span>]]>
|
2933
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
2937
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2938
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2942
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:34.2pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
</td>]]>
|
2944
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b><b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b></p>]]>
|
2945
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span></b>]]>
|
2945
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_20"
o:spid="_x0000_i1037" type="#_x0000_t75" style='width:150.75pt;height:172.5pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg" o:title="JOSE ARISTEU"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20"></span>]]>
|
2951
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=201 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image030.jpg" vshapes="Imagem_x0020_20">]]>
|
2952
| <![CDATA[<b
style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span></b>]]>
|
2953
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'><o:p></o:p></span>]]>
|
2955
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2956
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2956
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2960
| <![CDATA[<tr style='mso-yfti-irow:15;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
2961
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
2963
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span></p>]]>
|
2964
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_21" o:spid="_x0000_i1036"
type="#_x0000_t75" style='width:147.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg" o:title="WILSON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21"><o:p></o:p></span>]]>
|
2970
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=197 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image032.jpg" vshapes="Imagem_x0020_21">]]>
|
2972
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
2973
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
2977
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
2979
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2980
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2980
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2982
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2983
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2983
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2985
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
2986
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
2986
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
2988
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>]]>
|
2989
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span></b>]]>
|
2989
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Wilson
de Oliveira Machado<span style='mso-spacerun:yes'> </span><o:p></o:p></span>]]>
|
2991
| <![CDATA[<span style='mso-spacerun:yes'> </span>]]>
|
2992
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span></p>]]>
|
2993
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
2995
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
2995
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
2997
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Primeiro Presidente da 7ªLegislatura<o:p></o:p></span>]]>
|
2999
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span></p>]]>
|
3000
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1991 a" w:st="on">1991 a</st1:metricconverter> 31 de dezembro de
1992<o:p></o:p></span>]]>
|
3000
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3004
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3005
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3009
| <![CDATA[<tr style='mso-yfti-irow:16;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3010
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
3012
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3013
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3013
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3016
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3017
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3017
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3020
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b></p>]]>
|
3021
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span></b>]]>
|
3021
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador José Edson Eleutério<o:p></o:p></span>]]>
|
3024
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span></p>]]>
|
3025
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3027
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3028
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3029
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Segundo Presidente da 8ªLegislatura<o:p></o:p></span>]]>
|
3032
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span></p>]]>
|
3033
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1993 a" w:st="on">1993 a</st1:metricconverter> 31 de dezembro de
1994<span style='mso-spacerun:yes'>
</span><o:p></o:p></span>]]>
|
3034
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3037
| <![CDATA[<span style='mso-spacerun:yes'>
</span>]]>
|
3039
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3040
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3044
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3046
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3047
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_22" o:spid="_x0000_i1035"
type="#_x0000_t75" style='width:153.75pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg" o:title="JOSE EDISON"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22"></span>]]>
|
3053
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=205 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image034.jpg" vshapes="Imagem_x0020_22">]]>
|
3054
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3056
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3057
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3059
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3060
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3062
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3063
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3067
| <![CDATA[<tr style='mso-yfti-irow:17;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
3068
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>
</td>]]>
|
3070
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span></p>]]>
|
3071
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_12" o:spid="_x0000_i1034"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg" o:title="vereadores (4)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12"><o:p></o:p></span>]]>
|
3077
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image036.jpg" vshapes="Imagem_x0020_12">]]>
|
3080
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
3082
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b></p>]]>
|
3083
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span></b>]]>
|
3083
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Roque
Manes<o:p></o:p></span>]]>
|
3086
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span></p>]]>
|
3087
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3089
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3089
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3091
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Terceiro Presidente da 8ªLegislatura<span
style='mso-spacerun:yes'> </span><o:p></o:p></span>]]>
|
3092
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3094
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span></p>]]>
|
3095
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1995 a" w:st="on">1995 a</st1:metricconverter> 31 de dezembro de
1996<o:p></o:p></span>]]>
|
3095
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3099
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span></p>]]>
|
3100
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3102
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3102
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3104
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Quinto Presidente da 9ªLegislatura<o:p></o:p></span>]]>
|
3106
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span></p>]]>
|
3107
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1999 a" w:st="on">1999 a</st1:metricconverter> 31 de dezembro de
2000<o:p></o:p></span>]]>
|
3107
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3111
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span></p>]]>
|
3112
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3114
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3114
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3116
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sexto Presidente da 10ªLegislatura <o:p></o:p></span>]]>
|
3118
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span></p>]]>
|
3119
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2001 a" w:st="on">2001 a</st1:metricconverter> 31 de dezembro de
2002<o:p></o:p></span>]]>
|
3119
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3123
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>]]>
|
3125
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3126
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3127
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3128
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Terceiro Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span>]]>
|
3131
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span></p>]]>
|
3133
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3134
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3135
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3136
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 12ª Legislatura<o:p></o:p></span>]]>
|
3138
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3140
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3141
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3142
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3143
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 14</span>]]>
|
3144
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>ª Legislatura</span>]]>
|
3146
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3147
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3149
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3150
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3151
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3152
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura</span>]]>
|
3154
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b>]]>
|
3154
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span>]]>
|
3155
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3156
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3158
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3159
| <![CDATA[<b style='mso-bidi-font-weight:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span></b>]]>
|
3160
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span></span>]]>
|
3160
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3161
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3165
| <![CDATA[<tr style='mso-yfti-irow:18;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3166
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
3168
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3169
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3169
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3172
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3173
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3173
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3176
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b></p>]]>
|
3177
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span></b>]]>
|
3177
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Ramiro de Campos<o:p></o:p></span>]]>
|
3180
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span></p>]]>
|
3181
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3183
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3184
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3185
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Quarto Presidente da Nona Legislatura<o:p></o:p></span>]]>
|
3188
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span></p>]]>
|
3189
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="1997 a" w:st="on">1997 a</st1:metricconverter> 32 de dezembro de
2000<o:p></o:p></span>]]>
|
3190
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3194
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span></p>]]>
|
3195
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3197
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3198
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3199
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 7ª Legislatura e 8ªLegislatura<o:p></o:p></span>]]>
|
3202
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3203
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3207
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3209
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3210
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_23" o:spid="_x0000_i1033"
type="#_x0000_t75" style='width:135pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg" o:title="RAMIRO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23"></span>]]>
|
3216
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=180 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image038.jpg" vshapes="Imagem_x0020_23">]]>
|
3217
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3219
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3220
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3222
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3223
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3227
| <![CDATA[<tr style='mso-yfti-irow:19;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3228
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
3230
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span></p>]]>
|
3231
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_26" o:spid="_x0000_i1032"
type="#_x0000_t75" style='width:114.75pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg" o:title="Aloísio"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26"><o:p></o:p></span>]]>
|
3237
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=153 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image040.jpg" vshapes="Imagem_x0020_26">]]>
|
3239
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3240
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3243
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3244
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3247
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3248
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3251
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3252
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3256
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3258
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3259
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span></b>]]>
|
3259
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Aloísio
Carlos de Sá</span>]]>
|
3261
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3262
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span></p>]]>
|
3263
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3265
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3265
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3267
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Sétimo Presidente da 10ª Legislatura <o:p></o:p></span>]]>
|
3269
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span></p>]]>
|
3270
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2003 a" w:st="on">2003 a</st1:metricconverter> 31 de dezembro de
2004<o:p></o:p></span>]]>
|
3270
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3274
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span></p>]]>
|
3275
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3277
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3277
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3279
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Primeiro Presidente da 12ª Legislatura de
2011 a 2012<o:p></o:p></span>]]>
|
3282
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span></p>]]>
|
3283
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2011 a 31 de dezembro
de 2012<o:p></o:p></span>]]>
|
3283
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3286
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span></p>]]>
|
3288
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3289
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3290
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3291
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Segundo Presidente da 13° Legislatura de
2013 a 2014<o:p></o:p></span>]]>
|
3294
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span></p>]]>
|
3296
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3297
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3298
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3299
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vereador na 11ªLegislatura e na 12ªLegislatura<o:p></o:p></span>]]>
|
3301
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3302
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3306
| <![CDATA[<tr style='mso-yfti-irow:20;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3307
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>
</td>]]>
|
3309
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span></p>]]>
|
3310
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b><o:p></o:p></span>]]>
|
3312
| <![CDATA[<span style='mso-spacerun:yes'> </span>]]>
|
3312
| <![CDATA[<b style='mso-bidi-font-weight:
normal'>Vereador Osmar Trevisan</b>]]>
|
3314
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span></p>]]>
|
3315
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3317
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3318
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3319
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vigésimo
Oitavo Presidente da 11ªLegislatura de <st1:metricconverter ProductID="2005 a"
w:st="on">2005 a</st1:metricconverter> 2008<o:p></o:p></span>]]>
|
3323
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span></p>]]>
|
3324
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'>
</span>De 1º de janeiro de <st1:metricconverter ProductID="2005 a" w:st="on">2005
a</st1:metricconverter> 31 de dezembro de 2006<o:p></o:p></span>]]>
|
3325
| <![CDATA[<span style='mso-spacerun:yes'>
</span>]]>
|
3328
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span></p>]]>
|
3330
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3332
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3332
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3334
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ªLegislatura<o:p></o:p></span>]]>
|
3337
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>]]>
|
3339
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3341
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3341
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3343
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span>]]>
|
3346
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span></p>]]>
|
3348
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3350
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3350
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3352
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 13ªLegislatura<o:p></o:p></span>]]>
|
3355
| <![CDATA[<p class=MsoListParagraphCxSpMiddle style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span></p>]]>
|
3357
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3359
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3359
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3361
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ªLegislatura<o:p></o:p></span>]]>
|
3364
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span></p>]]>
|
3366
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3368
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3368
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3370
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura<o:p></o:p></span>]]>
|
3374
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3376
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3377
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_13" o:spid="_x0000_i1031"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg" o:title="vereadores (5)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13"></span>]]>
|
3383
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image042.jpg" vshapes="Imagem_x0020_13">]]>
|
3384
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3386
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3387
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3391
| <![CDATA[<tr style='mso-yfti-irow:21;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3392
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>
</td>]]>
|
3394
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span></p>]]>
|
3395
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_31" o:spid="_x0000_i1030"
type="#_x0000_t75" style='width:127.5pt;height:172.5pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg" o:title="JOAO"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31"><o:p></o:p></span>]]>
|
3401
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=170 height=230
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image044.jpg" vshapes="Imagem_x0020_31">]]>
|
3404
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3406
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b></p>]]>
|
3407
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span></b>]]>
|
3407
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span><o:p></o:p></span>]]>
|
3408
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3410
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3411
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3411
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3413
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3414
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3414
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3416
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3417
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3417
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3419
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3420
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span></b>]]>
|
3420
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador João
Antônio de Almeida</span>]]>
|
3422
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3423
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span></p>]]>
|
3424
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3426
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3426
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3428
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Vigésimo Nono Presidente da 11ª Legislatura de 2005
a2008 <o:p></o:p></span>]]>
|
3431
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span></p>]]>
|
3432
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de <st1:metricconverter
ProductID="2007 a" w:st="on">2007 a</st1:metricconverter> 31 de dezembro de
2008<o:p></o:p></span>]]>
|
3432
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3436
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3437
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3439
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3440
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3444
| <![CDATA[<tr style='mso-yfti-irow:22;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
3445
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>
</td>]]>
|
3447
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3448
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3448
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3451
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3452
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3452
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3455
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b></p>]]>
|
3456
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span></b>]]>
|
3456
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><span style='mso-spacerun:yes'> </span>Vereador
Luciano César de Toledo<o:p></o:p></span>]]>
|
3458
| <![CDATA[<span style='mso-spacerun:yes'> </span>]]>
|
3460
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:l0 level1 lfo1'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span></p>]]>
|
3461
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3463
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3464
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3465
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Trigésimo
Presidente da 12ª Legislatura de <st1:metricconverter ProductID="2009 a"
w:st="on">2009 a</st1:metricconverter> 2012<o:p></o:p></span>]]>
|
3469
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span></p>]]>
|
3470
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-spacerun:yes'> </span>De 1º de janeiro de 2009 a 31 de dezembro
de 2010<o:p></o:p></span>]]>
|
3471
| <![CDATA[<span
style='mso-spacerun:yes'> </span>]]>
|
3474
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span></p>]]>
|
3476
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3478
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3478
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3480
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 10ª Legislatura<o:p></o:p></span>]]>
|
3483
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span></p>]]>
|
3485
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3487
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3487
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3489
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ª Legislatura<o:p></o:p></span>]]>
|
3493
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
3495
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3496
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_11" o:spid="_x0000_i1029"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg" o:title="vereadores (10)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11"></span>]]>
|
3502
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image046.jpg" vshapes="Imagem_x0020_11">]]>
|
3503
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3507
| <![CDATA[<tr style='mso-yfti-irow:23;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
3508
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>
</td>]]>
|
3510
| <![CDATA[<p class=MsoListParagraph style='margin-bottom:0cm;margin-bottom:.0001pt;
mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span></p>]]>
|
3511
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_29" o:spid="_x0000_i1028"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg" o:title="Antônio Carlos Rodrigues de Paula"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29"><o:p></o:p></span>]]>
|
3517
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image048.jpg" vshapes="Imagem_x0020_29">]]>
|
3520
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
3522
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3523
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3523
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3526
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3527
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3527
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3530
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3531
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3531
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3534
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b></p>]]>
|
3535
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span></b>]]>
|
3535
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'>Vereador Antônio Carlos de Arruda<o:p></o:p></span>]]>
|
3538
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span></p>]]>
|
3540
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3541
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3542
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3543
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quarto Presidente da 13° Legislatura de
2015 a 2016<o:p></o:p></span>]]>
|
3546
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l0 level1 lfo1'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3548
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3549
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3550
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3551
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 14ª Legislatura</span>]]>
|
3553
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3556
| <![CDATA[<tr style='mso-yfti-irow:24;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
3557
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>
</td>]]>
|
3559
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3560
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3560
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3562
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3563
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3563
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3565
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3566
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3566
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3568
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3569
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3569
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3571
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b></p>]]>
|
3572
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span></b>]]>
|
3572
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Marcos
Vinicius de Camargo Moura<o:p></o:p></span>]]>
|
3575
| <![CDATA[<p class=MsoListParagraphCxSpFirst align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;text-indent:-18.0pt;
line-height:normal;mso-list:l1 level1 lfo5'><![if !supportLists]><span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span></p>]]>
|
3577
| <![CDATA[<span
style='font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
mso-bidi-font-family:Symbol;mso-fareast-language:PT-BR;mso-no-proof:yes'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3579
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3580
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3581
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Quinto Presidente da 14° Legislatura de
2017 a 2018</span>]]>
|
3583
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif;
mso-fareast-language:PT-BR;mso-no-proof:yes'><o:p></o:p></span>]]>
|
3586
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
3588
| <![CDATA[<p class=MsoListParagraphCxSpLast align=center style='margin-bottom:0cm;
margin-bottom:.0001pt;mso-add-space:auto;text-align:center;line-height:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3589
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_30"
o:spid="_x0000_i1027" type="#_x0000_t75" style='width:115.5pt;height:173.25pt;
visibility:visible;mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg" o:title="Marcos Vinicius de Camargo Moura"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30"></span>]]>
|
3595
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image050.jpg" vshapes="Imagem_x0020_30">]]>
|
3596
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3600
| <![CDATA[<tr style='mso-yfti-irow:25;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>
</tr>]]>
|
3601
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>
</td>]]>
|
3603
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3604
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3604
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3607
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3608
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3608
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3611
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3612
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3612
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3615
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span></p>]]>
|
3616
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_14" o:spid="_x0000_i1026"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg" o:title="vereadores (7)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14"><o:p></o:p></span>]]>
|
3622
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image052.jpg" vshapes="Imagem_x0020_14">]]>
|
3624
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span></p>]]>
|
3625
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><o:p> ;</o:p></span>]]>
|
3629
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
</td>]]>
|
3631
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3632
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3632
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3635
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3636
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3636
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3639
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3640
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3640
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3643
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3644
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3644
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3647
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3648
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3648
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3651
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b></p>]]>
|
3652
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span></b>]]>
|
3652
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif;mso-fareast-language:
PT-BR;mso-no-proof:yes'><o:p> ;</o:p></span>]]>
|
3655
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b></p>]]>
|
3656
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span></b>]]>
|
3656
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'>Vereador Alessandro Donizete Paes de Vieira<o:p></o:p></span>]]>
|
3659
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span></p>]]>
|
3661
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3662
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3663
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3664
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sexto Presidente da 14° Legislatura de
2019 a 2020<o:p></o:p></span>]]>
|
3667
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l3 level1 lfo3'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span><span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3669
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3670
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3671
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3672
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 15ªLegislatura</span>]]>
|
3674
| <![CDATA[<span style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3677
| <![CDATA[<tr style='mso-yfti-irow:26;mso-yfti-lastrow:yes;height:13.9pt'>
<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>
<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>
</tr>]]>
|
3678
| <![CDATA[<td width=318 valign=top style='width:238.65pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>
</td>]]>
|
3680
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3681
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3681
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3683
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3684
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3684
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3686
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3687
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3687
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3689
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3690
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3690
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3692
| <![CDATA[<p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
normal'><b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3693
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3693
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3695
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3696
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3696
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3698
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b></p>]]>
|
3699
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span></b>]]>
|
3699
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'>Vereador Luiz
Gonzaga dos Santos<o:p></o:p></span>]]>
|
3702
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span></p>]]>
|
3704
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3705
| <![CDATA[<span
style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3706
| <![CDATA[<span style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3707
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif'>Trigésimo Sétimo Presidente da 13° Legislatura de
2021 a 2022<o:p></o:p></span>]]>
|
3710
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;text-indent:-18.0pt;line-height:normal;mso-list:
l4 level1 lfo4'><![if !supportLists]><span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span><span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span></p>]]>
|
3712
| <![CDATA[<span style='font-size:12.0pt;
font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;
mso-fareast-language:PT-BR;mso-no-proof:yes'><span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span></span>]]>
|
3714
| <![CDATA[<span style='mso-list:Ignore'>·<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span></span>]]>
|
3714
| <![CDATA[<span
style='font:7.0pt "Times New Roman"'> ; ; ; ; ; ; ; ;
</span>]]>
|
3716
| <![CDATA[<span style='font-size:12.0pt;font-family:
"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:yes'>Vereador
na 12ªLegislatura<o:p></o:p></span>]]>
|
3720
| <![CDATA[<td width=295 valign=top style='width:221.3pt;padding:0cm 5.4pt 0cm 5.4pt;
height:13.9pt'>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>
<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>
<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>
</td>]]>
|
3722
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3723
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3723
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3725
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3726
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3726
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3728
| <![CDATA[<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b></p>]]>
|
3729
| <![CDATA[<b style='mso-bidi-font-weight:normal'><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span></b>]]>
|
3729
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3731
| <![CDATA[<p class=MsoListParagraphCxSpFirst style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span><span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span></p>]]>
|
3732
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif;mso-fareast-language:PT-BR;mso-no-proof:
yes'><!--[if gte vml 1]><v:shape id="Imagem_x0020_10" o:spid="_x0000_i1025"
type="#_x0000_t75" style='width:115.5pt;height:173.25pt;visibility:visible;
mso-wrap-style:square'>
<img style="border-radius:6px;margin:auto;" class="img-responsive" style='max-width:100%' src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg" o:title="vereadores (11)-min"/>
</v:shape><![endif]--><img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10"></span>]]>
|
3738
| <![CDATA[<img style="border-radius:6px;margin:auto;" class="img-responsive" width=154 height=231
src="https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image054.jpg" vshapes="Imagem_x0020_10">]]>
|
3739
| <![CDATA[<span
style='font-size:12.0pt;font-family:"Times New Roman",serif'><o:p></o:p></span>]]>
|
3741
| <![CDATA[<p class=MsoListParagraphCxSpLast style='margin-bottom:0cm;margin-bottom:
.0001pt;mso-add-space:auto;line-height:normal'><span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span></p>]]>
|
3742
| <![CDATA[<span style='font-size:12.0pt;
font-family:"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3750
| <![CDATA[<span style='font-size:16.0pt;line-height:115%;font-family:
"Times New Roman",serif'><o:p> ;</o:p></span>]]>
|
3901
| <![CDATA[<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1131 " style="font-family:arial; font-size:12px;">Canal do titular de dados</a>]]>
|
3914
| <![CDATA[<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1125 " style="font-family:arial; font-size:12px;">Tratamento de Dados na Câmara Municipal - LGPD</a>]]>
|
3927
| <![CDATA[<a href="?pag=T1RVPU9EZz1PV0k9T1RrPU9UUT1OMlE9T0dNPU9XST1PR1U9T0dNPU9HWT1PV009T1dZPQ==&id=1092 " style="font-family:arial; font-size:12px;">JULGAMENTO DOS RECURSOS, CLASSIFICAÇÃO DEFINITIVA PRELIMINAR E CONVOCAÇÃO PARA A PROVA PRÁTICA</a>]]>
|
3945
| <![CDATA[<div class="col-md-2 col-sm-2 col-xs-6" style="/*text-align: right;*/ margin-top: -20px;" >
<a target="_blank" href="https://web.whatsapp.com/send?text=GALERIA DOS PRESIDENTES - http%3A%2F%2Fwww.camaracesariolange.sp.gov.br%2F%3Fpag%3DT1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0%3D%26idmenu%3D8 " style="margin-left: 50px;" >
<img src="https://www.weblinesistemas.com/imagens_camaras/whatsapp2.ico" style="width:40px;"/>
</a>
</div>]]>
|
3946
| <![CDATA[<a target="_blank" href="https://web.whatsapp.com/send?text=GALERIA DOS PRESIDENTES - http%3A%2F%2Fwww.camaracesariolange.sp.gov.br%2F%3Fpag%3DT1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0%3D%26idmenu%3D8 " style="margin-left: 50px;" >
<img src="https://www.weblinesistemas.com/imagens_camaras/whatsapp2.ico" style="width:40px;"/>
</a>]]>
|
3947
| <![CDATA[<img src="https://www.weblinesistemas.com/imagens_camaras/whatsapp2.ico" style="width:40px;"/>]]>
|
3952
| <![CDATA[<div class="col-md-12 col-xs-6 text-center" style="margin-left: -35px;" >
<div id="fb-root"></div>
<script>
$(document).ready(function(){
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v3.1';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
});
</script>
<div class="fb-like" data-href="https://www.camaracesariolange.sp.gov.br/weblineprimeirapagina.php?pag=T1RjPU9EZz1PVFU9T0dVPU9HST1PVEE9T0dFPU9HRT0=&idmenu=8&dataatualizacao=202209082158" data-layout="button_count" data-action="like" data-size="small" data-show-faces="true" data-share="true"></div>
</div>]]>
|
3986
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_banner/botao_coronavirus.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;" >]]>
|
3993
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado3/tratamento_dados_lgpd_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4000
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/webmail_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4007
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/agenda_event_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4014
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado2/mais_transparencia_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4021
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_audio_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4028
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_foto_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4035
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/galeria_video_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4042
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/transmissao_verde_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4049
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_banner/e-sic-duplo.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4056
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_clean/contas_executivo_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4063
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado2/perguntas_frequentes_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4070
| <![CDATA[<img src="/arquivos_site//botoes_laterais/layout_arredondado/ouvidoria_314x72.png" class="img-responsive img-responsive-100 w100Porcento botoesPretoBranco" style="width:;height:65px;" >]]>
|
4241
| <![CDATA[<div style="">
<span class="fs12px" >Total de Visitas: 108383 ; | ; </span><span class="fs12px" >Online: 10</span>
</div>]]>
|
825
| <![CDATA[<style>
.MsoNormalTable {
width: 100% !important;
max-width: 100% !important;
table-layout: fixed;
}
.MsoNormalTable > td {
width: fit-content !important;
word-wrap: break-word;
}
#cont-noticia > span, #cont-noticia > p {
font-family: auto;
}
.MsoNormal > span {
position: initial !important;
}
</style>]]>
|
1501
| <![CDATA[<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;
mso-font-charset:2;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:1;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:0 0 0 0 0 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-536870145 1073786111 1 0 415 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-link:"Texto de balão Char";
margin:0cm;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-fareast-language:EN-US;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{mso-style-priority:34;
mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-type:export-only;
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
mso-add-space:auto;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
span.TextodebaloChar
{mso-style-name:"Texto de balão Char";
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Texto de balão";
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;
font-family:"Tahoma",sans-serif;
mso-ascii-font-family:Tahoma;
mso-hansi-font-family:Tahoma;
mso-bidi-font-family:Tahoma;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
.MsoPapDefault
{mso-style-type:export-only;
margin-bottom:10.0pt;
line-height:115%;}
@page WordSection1
{size:595.3pt 841.9pt;
margin:70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin:35.4pt;
mso-footer-margin:35.4pt;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
@list l0
{mso-list-id:1902074;
mso-list-type:hybrid;
mso-list-template-ids:-1993993762 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l0:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l0:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l0:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1
{mso-list-id:376248774;
mso-list-type:hybrid;
mso-list-template-ids:-877229014 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l1:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l1:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l1:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2
{mso-list-id:1246382606;
mso-list-type:hybrid;
mso-list-template-ids:-2104466224 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l2:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l2:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l2:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3
{mso-list-id:1838495926;
mso-list-type:hybrid;
mso-list-template-ids:272137502 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l3:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l3:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l3:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4
{mso-list-id:2026056994;
mso-list-type:hybrid;
mso-list-template-ids:-774859062 68550657 68550659 68550661 68550657 68550659 68550661 68550657 68550659 68550661;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level4
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level5
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level6
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
@list l4:level7
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Symbol;}
@list l4:level8
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:"Courier New";}
@list l4:level9
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:none;
mso-level-number-position:left;
text-indent:-18.0pt;
font-family:Wingdings;}
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>]]>
|
4273
| <![CDATA[<style type="text/css">
.cookiealert {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
margin: 0 !important;
z-index: 999;
opacity: 0;
visibility: hidden;
border-radius: 0;
transform: translateY(100%);
transition: all 500ms ease-out;
color: #ecf0f1;
background: #212327;
}
.cookiealert.show {
opacity: 1;
visibility: visible;
transform: translateY(0%);
transition-delay: 1000ms;
}
.cookiealert a {
text-decoration: underline;
color: #337ab7 !important;
}
.cookiealert .acceptcookies {
margin-left: 10px;
vertical-align: baseline;
}
.btn-primary{
color: #fff !important;
background-color: #337ab7 !important;
border-color: #2e6da4 !important;
}
</style>]]>
|
161
| <![CDATA[<script>
$(document).ready(function(){
//***********************************************************************************Faz o aumentar e diminuir a fonte*********************
function aumentaFonte(sinal) {
if(sinal == '+') {
novoTamanho = parseInt(sessionStorage.fonte_atual)+ 2;
} else {
novoTamanho = parseInt(sessionStorage.fonte_atual)- 2;
}
if(novoTamanho >= 12 && novoTamanho <= 18){
sessionStorage.fonte_atual = novoTamanho;
$("*").css('font-size' , novoTamanho);
}
}
if(!sessionStorage.fonte_atual > 0){ sessionStorage.fonte_atual = $('body').css('font-size'); }
$('.acess-texto').click(function(){ aumentaFonte($(this).attr('data-sinal')) });
//*********************************************************************************************************Fim acessibilida fonte**********
//***********************************************************************************Contraste*********************************************
function mudaContraste(contraste){
if(typeof sessionStorage.contraste != "undefined"){ var padrao = JSON.parse(sessionStorage.contrastePadrao); }
if(contraste == 1){
location.reload();
$('body').css('background-color' , padrao.body );
$('.navbar-default').css('background-color' , padrao.navbardefault );
$('header').css('background-color' , padrao.header );
$('.bgAzulescuro').css('background-color' , padrao.bgAzulescuro );
$('.tituloBox ').css('color' , padrao.tituloBox );
$('.textoBox ').css('color' , padrao.textoBox );
$('.box').css('background' , padrao.box );
$('.box2').css('background' , padrao.box2 );
$('.mapa_site').css('background-color' , padrao.mapa_site );
$('.copy').css('background-color' , padrao.copy );
$('.panel-heading').css('background-color' , padrao.panelheading );
$('.border5pxAzul').css('border-top' , padrao.border5pxAzul );
$('#areaMeioPag *').css('color' , padrao.areaMeioPag );
$('.linksNoticias ').css('color' , padrao.linksNoticias );
$('#legendas a').css('color' , padrao.legendas_a );
$('.listaVereadores').css('color' , padrao.listaVereadores );
$('.dropdown-menu').css('background' , padrao.dropdownmenu );
$('.titulo_noticia').css('color' , padrao.tituloNoticia );
$('.subtitulo_noticia').css('color' , padrao.subtituloNoticia );
$('.chamada_noticia').css('color' , padrao.chamadaNoticia );
$('.tituloPagina').css('color' , padrao.tituloPagina );
$('.listaUltimasGalerias div').css('color' , padrao.listaUltimasGalerias );
$( "tr" ).css( "background-color", "" );
$( ".table-striped > tbody > tr:nth-of-type(odd)" ).css( "background-color", "" );
$('.tiposBuscador').css('color' , padrao.tiposBuscador );
$('.dropdown-toggle').css('color' , padrao.dropdown-toggle );
$('.paddingLeft0px').css('color' , padrao.paddingLeft0px);
$('.breadcrumb').css('color' , padrao.breadcrumb);
$('.form-control').css('color' , padrao.form-control);
$('.pagination > li > a, .pagination > li > span').css("background-color", "");
$('.numberDiaAcess').css('color', padrao.numberDiaAcess);
$('.legendaAcess').css('color', padrao.legendaAcess);
$('.list-group-item').css('color', padrao.list-group-item);
$('.tituloBoxEnquete').css('color', padrao.tituloBoxEnquete);
$('.radioEnquete').css('color', padrao.radioEnquete);
$('img').each(function(){ //percorre todas imagens da tela e se tiver image de contraste retorna para normal
if($(this).attr("data-contraste") == 1){//adicionar na tag da imagem que tiver outra de contraste
var arraySrc = $(this).attr("src").split('/');
Newarray = arraySrc.filter((value)=>value!='contraste');
neWarraySrc = Newarray.join("/");
$(this).attr("src" , neWarraySrc );
}
});
}else if(contraste == 0){
$('body').css('background-color' ,'#000');
$('.navbar-default').css('background-color' ,'transparent' );
$('header').css('background-color' , '#585858' );
$('.bgAzulescuro').css('background-color' ,'#000' );
$('.tituloBox').css('color' ,'yellow' );
$('.textoBox').css('color' ,'yellow' );
$('.box').css('background' ,'transparent' );
$('.box2').css('background' ,'transparent' );
$('.mapa_site').css('background-color' , '#585858' );
$('.copy').css('background-color' ,'#000' );
$('.panel-heading').css('background-color' ,'#585858' );
$('.border5pxAzul').css('border-top' ,'0' );
$('#areaMeioPag *').css('color' ,'#FFF' );
$('.linksNoticias ').css('color' ,'#FFF' );
$('#legendas a').css('color' ,'#FFF' );
$('.listaVereadores').css('color' ,'#FFF' );
$('.titulo_noticia').css('color' ,'#FFF' );
$('.subtitulo_noticia').css('color' ,'#FFF' );
$('.chamada_noticia').css('color' ,'#FFF' );
$('.listaUltimasGalerias div').css('color' ,'yellow' );
$('.tituloPagina').css('color' ,'#FFF' );
$('.dropdown-menu').css('background-image', 'url( "https://www.weblinesistemas.com/responsivo/imagens/submenu_preto.png" )');
$( "tr" ).css( "background-color", "#000000" );
$( ".table-striped > tbody > tr:nth-of-type(odd)" ).css( "background-color", "#42545d" );
$('.tiposBuscador').css('color' , '#FFF');
$('.btn-default').css('color' , '#333');
$('.dropdown-toggle').css('color' , 'white' );
$('.paddingLeft0px').css('color' , '#FFF');
$('.breadcrumb').css('background-color' , 'transparent');
$('.form-control').css('color' , '#555');
$('.pagination > li > a, .pagination > li > span').css("background-color", "transparent");
$('.numberDiaAcess').css('color', '#FFF');
$('.legendaAcess').css('color', '#FFF');
$('.list-group-item').css('background-color', '#000');
$('.tituloBoxEnquete').css('color', '#a5a2a2');
$('.radioEnquete').css('color', '#a5a2a2');
$('img').each(function(){ //percorre todas imagens da tela e se tiver image de contraste retorna para normal
if($(this).attr("data-contraste") == 1){//adicionar na tag da imagem que tiver outra de contraste
var arraySrc = $(this).attr("src").split('/');
arraySrc.splice( arraySrc.length-1 ,0 ,'contraste');
neWarraySrc = arraySrc.join("/");
$(this).attr("src" , neWarraySrc );
}
});
}
}
if(sessionStorage.contraste == 0){
mudaContraste(sessionStorage.contraste);
}
if(typeof sessionStorage.contraste == "undefined"){
sessionStorage.contraste = 1; //inicializa a session
sessionStorage.contrastePadrao = JSON.stringify({
body:$('body').css('background-color'),
header:$('header').css('background-color'),
navbardefault:$('.navbar-default').css('background-color'),
bgAzulescuro:$('.bgAzulescuro').css('background-color'),
tituloBox :$('.tituloBox ').css('color'),
textoBox :$('.textoBox ').css('color'),
box :$('.box').css('background'),
box2 :$('.box2').css('background'),
mapa_site :$('.mapa_site').css('background-color'),
border5pxAzul :$('.border5pxAzul').css('border-top'),
panelheading :$('.panel-heading ').css('background-color'),
copy :$('.copy ').css('background-color'),
areaMeioPag :$('#areaMeioPag ').css('color'),
linksNoticias :$('.linksNoticias ').css('color'),
legendas_a : $('#legendas a').css('color'),
listaVereadores : $('.listaVereadores').css('color'),
dropdownmenu : $('.dropdown-menu').css('background'),
tituloNoticia : $('.titulo_noticia').css('color'),
subtituloNoticia : $('.subtitulo_noticia').css('color'),
chamadaNoticia : $('.chamada_noticia').css('color'),
listaUltimasGalerias : $('.listaUltimasGalerias div').css('color'),
tituloPagina : $('.tituloPagina').css('color'),
});
//Obj com as tags para mudar a cor e guardar o valor padrao.
}
$('.acess-contraste').click(function(){
sessionStorage.contraste = sessionStorage.contraste == 1 ? 0 : 1 ;
mudaContraste(sessionStorage.contraste);
});
//*********************************************************************************************************Fim Contraste**********
});
</script>]]>
|
471
| <![CDATA[<script>
$(document).ready(function(){
$('.click-link').click(function(){
window.location = $(this).data('link');
})
})
</script>]]>
|
518
| <![CDATA[<script>
$(document).ready(function(){
$('#pag1').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1OelU9T1RZPU9XUT1PVEk9T0dVPU9UUT1PR1U9WVRBPQ==' );
});
$('#pag2').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1Oamc9T1dRPU9HRT1PVGM9T0dVPU9HTT1PVEU9T0dVPU4yST1PVFE9T1dFPVlUUT0=' );
});
$('#pag3').click(function(){
$('#form-escolha-busca').attr('action' ,'?pag=T0RNPU9UZz1PVFk9T0RnPU9EWT1Oamc9T1dRPU9HRT1PVGM9T0dVPU9HTT1PVEU9T0dVPU4yWT1ZVEU9WVRBPVlURT1ZVEk9WVRZPU9XVT1ZVGs9WVdNPVlUaz1PV0U9WVdNPQ==' );
});
/*$('#form-escolha-busca').submit(function(){
if($('#palavraChave').val()==""){
alert("Digite uma palavra chave.");
return true;
}
});*/
});
</script>]]>
|
772
| <![CDATA[<script>
$(document).ready(function(){
$('#btnClickTvWownza').click(function(){
window.open('/tv_wowza','','width=800,location=no,directories=no,scrollbars=no,menubar=no,statusbar=no,resize=no,height=680','no','no');
})
});
</script>]]>
|
3758
| <![CDATA[<script>
$(".MsoNormalTable").attr("width","100%");
$(".MsoNormalTable").find('td').attr("width","");
$(".MsoNormalTable").find('td').attr("nowrap",null);
</script>]]>
|
3763
| <![CDATA[<script>
$( "img[vshapes='_x0000_t75']" ).attr('src','');
</script>]]>
|
3767
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_2']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image001.jpg');
</script>]]>
|
3771
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_3']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image003.jpg');
</script>]]>
|
3775
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_4']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image005.jpg');
</script>]]>
|
3779
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_15']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image007.jpg');
</script>]]>
|
3783
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_5']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image009.jpg');
</script>]]>
|
3787
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_7']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image011.jpg');
</script>]]>
|
3791
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_8']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image013.jpg');
</script>]]>
|
3795
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_9']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image015.jpg');
</script>]]>
|
3799
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_16']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image017.jpg');
</script>]]>
|
3803
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_17']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image019.jpg');
</script>]]>
|
3807
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_18']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image021.jpg');
</script>]]>
|
3811
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_19']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image023.jpg');
</script>]]>
|
3815
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_24']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image025.jpg');
</script>]]>
|
3819
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_25']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image027.jpg');
</script>]]>
|
3823
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_20']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image029.jpg');
</script>]]>
|
3827
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_21']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image031.jpg');
</script>]]>
|
3831
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_22']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image033.jpg');
</script>]]>
|
3835
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_12']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image035.jpg');
</script>]]>
|
3839
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_23']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image037.jpg');
</script>]]>
|
3843
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_26']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image039.jpg');
</script>]]>
|
3847
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_13']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image041.jpg');
</script>]]>
|
3851
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_31']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image043.jpg');
</script>]]>
|
3855
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_11']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image045.jpg');
</script>]]>
|
3859
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_29']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image047.jpg');
</script>]]>
|
3863
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_30']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image049.jpg');
</script>]]>
|
3867
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_14']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image051.jpg');
</script>]]>
|
3871
| <![CDATA[<script>
$( "img[vshapes='Imagem_x0020_10']" ).attr('src','https://www.camaracesariolange.sp.gov.br/images/imagesnoticias/1120/principal_arquivos/image053.jpg');
</script>]]>
|
3955
| <![CDATA[<script>
$(document).ready(function(){
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v3.1';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
});
</script>]]>
|
4082
| <![CDATA[<script>
$(document).ready(function(){
$('#btnClickTvWownza').click(function(){
window.open('/tv_wowza','','width=800,location=no,directories=no,scrollbars=no,menubar=no,statusbar=no,resize=no,height=680','no','no');
})
});
</script>]]>
|
4321
| <![CDATA[<script type="text/javascript">
(function () {
"use strict";
var cookieAlert = document.querySelector(".cookiealert");
var acceptCookies = document.querySelector(".acceptcookies");
if (!cookieAlert) {
return;
}
cookieAlert.offsetHeight; // Force browser to trigger reflow
// Show the alert if we cant find the "acceptCookies" cookie
if (!getCookie("acceptCookies")) {
cookieAlert.classList.add("show");
}
// When clicking on the agree button, create a 1 year
// cookie to remember user's choice and close the banner
acceptCookies.addEventListener("click", function () {
setCookie("acceptCookies", true, 365);
cookieAlert.classList.remove("show");
// dispatch the accept event
window.dispatchEvent(new Event("cookieAlertAccept"));
$.ajax({
url: "indexAjax.php?pag=T1RRPU9EUT1PR1k9T1dJPU9EWT1ObUk9T0RnPU9HUT1PVGc9T1dVPU5tVT1PV009T1dNPU9XRT1PVGc9T1RZPVlUUT0=",
context: document.body
}).done(function() {
$( this ).addClass( "done" );
});
});
// Cookie functions from w3schools
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toUTCString();
if(location.protocol == 'https:'){
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/;SameSite=None;Secure";
}else{
document.cookie = cname + "=" + cvalue + ";" + expires + ";";
}
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') {
c = c.substring(1);
}
if (c.indexOf(name) === 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
})();
</script>]]>
|