ÿþ <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40"> <STYLE type=text/css>.menutitle { BORDER-RIGHT: #000000 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #000000 1px solid; PADDING-LEFT: 2px; FONT-WEIGHT: bold; MARGIN-BOTTOM: 5px; PADDING-BOTTOM: 2px; BORDER-LEFT: #000000 1px solid; WIDTH: 140px; CURSOR: pointer; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: #000000 1px solid; BACKGROUND-COLOR: #ececff; TEXT-ALIGN: center } .submenu { MARGIN-BOTTOM: 0.5em } </STYLE> <LINK href="page01_arquivos/filelist.xml" rel=File-List><!-- base target="right" --> <STYLE type=text/css>A:link { COLOR: #000000; TEXT-DECORATION: underline } A:hover { CURSOR: hand; COLOR: #0000ff; TEXT-DECORATION: none } A:visited { COLOR: #000000; TEXT-DECORATION: underline } A:hover { CURSOR: hand; COLOR: #0000ff; TEXT-DECORATION: none } </STYLE> <!--[if !mso]> <STYLE>v\:* { BEHAVIOR: url(#default#VML) } o\:* { BEHAVIOR: url(#default#VML) } .shape { BEHAVIOR: url(#default#VML) } TABLE.MsoNormalTable { FONT-SIZE: 10pt; FONT-FAMILY: "Times New Roman"; mso-style-parent: "" } </STYLE> <![endif]--> </HEAD> <!--[if gte mso 9]> <xml><o:shapedefaults v:ext="edit" spidmax="1027"/> </xml><![endif]--> <BODY bgColor=#000066> <SCRIPT language=JavaScript> //Analog clock script- By Kurt (kurt.grigg@virgin.net) //Script featured on Dynamic Drive //Visit http://www.dynamicdrive.com for this script and more fCol='dfdfdf'; //face colour. sCol='FF0000'; //seconds colour. mCol='dfdfdf'; //minutes colour. hCol='dfdfdf'; //hours colour. Ybase=30; //Clock height. Xbase=30; //Clock width. H='...'; H=H.split(''); M='....'; M=M.split(''); S='.....'; S=S.split(''); NS4=(document.layers); NS6=(document.getElementById&&!document.all); IE4=(document.all); Ypos=0; Xpos=0; dots=12; Split=360/dots; if (NS6){ for (i=1; i < dots+1; i++){ document.write('<div id="n6Digits'+i+'" style="position:absolute;top:0px;left:0px;width:30px;height:30px;font-family:Arial;font-size:10px;color:#'+fCol+';text-align:center;padding-top:10px">'+i+'</div>'); } for (i=0; i < M.length; i++){ document.write('<div id="Ny'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+mCol+'"></div>'); } for (i=0; i < H.length; i++){ document.write('<div id="Nz'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+hCol+'"></div>'); } for (i=0; i < S.length; i++){ document.write('<div id="Nx'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+sCol+'"></div>'); } } if (NS4){ dgts='1 2 3 4 5 6 7 8 9 10 11 12'; dgts=dgts.split(' ') for (i=0; i < dots; i++){ document.write('<layer name=nsDigits'+i+' top=0 left=0 height=30 width=30><center><font face=Arial size=1 color='+fCol+'>'+dgts[i]+'</font></center></layer>'); } for (i=0; i < M.length; i++){ document.write('<layer name=ny'+i+' top=0 left=0 bgcolor='+mCol+' clip="0,0,2,2"></layer>'); } for (i=0; i < H.length; i++){ document.write('<layer name=nz'+i+' top=0 left=0 bgcolor='+hCol+' clip="0,0,2,2"></layer>'); } for (i=0; i < S.length; i++){ document.write('<layer name=nx'+i+' top=0 left=0 bgcolor='+sCol+' clip="0,0,2,2"></layer>'); } } if (IE4){ document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=1; i < dots+1; i++){ document.write('<div id="ieDigits" style="position:absolute;top:0px;left:0px;width:30px;height:30px;font-family:Arial;font-size:10px;color:'+fCol+';text-align:center;padding-top:10px">'+i+'</div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < M.length; i++){ document.write('<div id=y style="position:absolute;width:2px;height:2px;font-size:2px;background:'+mCol+'"></div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < H.length; i++){ document.write('<div id=z style="position:absolute;width:2px;height:2px;font-size:2px;background:'+hCol+'"></div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < S.length; i++){ document.write('<div id=x style="position:absolute;width:2px;height:2px;font-size:2px;background:'+sCol+'"></div>'); } document.write('</div></div>') } function clock(){ time = new Date (); secs = time.getSeconds(); sec = -1.57 + Math.PI * secs/30; mins = time.getMinutes(); min = -1.57 + Math.PI * mins/30; hr = time.getHours(); hrs = -1.57 + Math.PI * hr/6 + Math.PI*parseInt(time.getMinutes())/360; if (NS6){ Ypos=window.pageYOffset+window.innerHeight-Ybase-25; Xpos=window.pageXOffset+window.innerWidth-Xbase-30; for (i=1; i < dots+1; i++){ document.getElementById("n6Digits"+i).style.top=Ypos-15+Ybase*Math.sin(-1.56 +i *Split*Math.PI/180) document.getElementById("n6Digits"+i).style.left=Xpos-15+Xbase*Math.cos(-1.56 +i*Split*Math.PI/180) } for (i=0; i < S.length; i++){ document.getElementById("Nx"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(sec); document.getElementById("Nx"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ document.getElementById("Ny"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(min); document.getElementById("Ny"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ document.getElementById("Nz"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(hrs); document.getElementById("Nz"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(hrs); } } if (NS4){ Ypos=window.pageYOffset+window.innerHeight-Ybase-20; Xpos=window.pageXOffset+window.innerWidth-Xbase-30; for (i=0; i < dots; ++i){ document.layers["nsDigits"+i].top=Ypos-5+Ybase*Math.sin(-1.045 +i*Split*Math.PI/180) document.layers["nsDigits"+i].left=Xpos-15+Xbase*Math.cos(-1.045 +i*Split*Math.PI/180) } for (i=0; i < S.length; i++){ document.layers["nx"+i].top=Ypos+i*Ybase/4.1*Math.sin(sec); document.layers["nx"+i].left=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ document.layers["ny"+i].top=Ypos+i*Ybase/4.1*Math.sin(min); document.layers["ny"+i].left=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ document.layers["nz"+i].top=Ypos+i*Ybase/4.1*Math.sin(hrs); document.layers["nz"+i].left=Xpos+i*Xbase/4.1*Math.cos(hrs); } } if (IE4){ Ypos=document.body.scrollTop+window.document.body.clientHeight-Ybase-20; Xpos=document.body.scrollLeft+window.document.body.clientWidth-Xbase-20; for (i=0; i < dots; ++i){ ieDigits[i].style.pixelTop=Ypos-15+Ybase*Math.sin(-1.045 +i *Split*Math.PI/180) ieDigits[i].style.pixelLeft=Xpos-15+Xbase*Math.cos(-1.045 +i *Split*Math.PI/180) } for (i=0; i < S.length; i++){ x[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(sec); x[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ y[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(min); y[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ z[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(hrs); z[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(hrs); } } setTimeout('clock()',100); } clock(); //--> </SCRIPT> <DIV align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" borderColor=#111111 height=1117 cellSpacing=0 cellPadding=6 width=731 bgColor=#000066 border=2> <TBODY> <TR> <TD vAlign=top borderColor=#ff9900 width=114 bgColor=#dfdfdf height=1101>&nbsp; <DIV align=center> <TABLE borderColor=#ff9900 height=281 width=110 bgColor=#dfdfdf border=1><CENTER></CENTER> <CENTER> <TBODY> <TR> <TD width=100 bgColor=#000080 height=52> <DIV align=center> <TABLE borderColor=#008000 width="40%" bgColor=#000000 border=1> <TBODY> <TR> <TD width="100%"><IMG height=170 src="villanicamisapreta.JPG" width=140 border=0> <P><FONT color=#ffffff>&nbsp; Prof. Roberto Villani</FONT></P></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV> <P><!-- BEGIN FASTCOUNTER CODE --></P> <P></P> <P></P> <P></P> <P></P> <DIV align=center> <CENTER> <TABLE id=AutoNumber4 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="140%" border=1> <TBODY> <TR> <TD width="100%" bgColor=#000000> <P align=center><A href="http://www.teatroeducativo.org/informa.html" target=_blank><IMG height=60 src="bancol1a.gif" width=120 border=0></A></P></TD></TR> <TR> <TD width="100%"><IMG height=228 src="jesusamor.jpg" width=156 border=0></TD></TR> <TR> <TD width="100%" bgColor=#ffffff> <P align=center><B><FONT size=1>CONTATO <IMG height=28 src="tele.gif" width=32 border=0>TELEF NICO</FONT></B></P></TD></TR> <TR> <TD width="100%" bgColor=#cc9933> <P align=center><B>(19) 9120-1151</B></P></TD></TR> <TR> <TD vAlign=top width=233 bgColor=#ffffff><!-- these next two lines are hacked --><!-- replace 38AA70 with bb3300--> <P align=center><FONT size=1></FONT>&nbsp;</P> <P align=center style="margin-top: 0; margin-bottom: 0"><IMG height=83 src="onibusTERV.jpg" width=80 border=0></P> <P align=center style="margin-top: 0; margin-bottom: 0"> <font size="2">&nbsp;<b>Viaje por nossas páginas.</b></font></P> <P align=center style="margin-top: 0; margin-bottom: 0"> <font size="1">&nbsp;</font></P></TD></TR> <TR> <TD width="100%" bgColor=#000000> <P align=center><B><FONT face=Arial color=#ffffff>Documentos</FONT></B></P> <DIV align=center> <CENTER> <TABLE id=AutoNumber6 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="100%" bgColor=#dfdfdf border=1> <TBODY> <TR> <TD width="100%"> <SCRIPT type=text/javascript> /*********************************************** * Switch Menu script- by Martial B of http://getElementById.com/ * Modified by Dynamic Drive for format & NS4/IE4 compatibility * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ var persistmenu="yes" //"yes" or "no". Make sure each SPAN content contains an incrementing ID starting at 1 (id="sub1", id="sub2", etc) var persisttype="sitewide" //enter "sitewide" for menu to persist across site, "local" for this page only if (document.getElementById){ //DynamicDrive.com change document.write('<style type="text/css">\n') document.write('.submenu{display: none;}\n') document.write('</style>\n') } function SwitchMenu(obj){ if(document.getElementById){ var el = document.getElementById(obj); var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change if(el.style.display != "block"){ //DynamicDrive.com change for (var i=0; i<ar.length; i++){ if (ar[i].className=="submenu") //DynamicDrive.com change ar[i].style.display = "none"; } el.style.display = "block"; }else{ el.style.display = "none"; } } } function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) if (offset != -1) { offset += search.length end = document.cookie.indexOf(";", offset); if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end)) } } return returnvalue; } function onloadfunction(){ if (persistmenu=="yes"){ var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname var cookievalue=get_cookie(cookiename) if (cookievalue!="") document.getElementById(cookievalue).style.display="block" } } function savemenustate(){ var inc=1, blockid="" while (document.getElementById("sub"+inc)){ if (document.getElementById("sub"+inc).style.display=="block"){ blockid="sub"+inc break } inc++ } var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname var cookievalue=(persisttype=="sitewide")? blockid+";path=/" : blockid document.cookie=cookiename+"="+cookievalue } if (window.addEventListener) window.addEventListener("load", onloadfunction, false) else if (window.attachEvent) window.attachEvent("onload", onloadfunction) else if (document.getElementById) window.onload=onloadfunction if (persistmenu=="yes" && document.getElementById) window.onunload=savemenustate </SCRIPT> <!-- Keep all menus within masterdiv--> <DIV id=masterdiv> <DIV class=menutitle style="WIDTH: 157px; HEIGHT: 18px" onclick="SwitchMenu('sub1')">Cartas e Ofícios</DIV> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"><SPAN class=submenu id=sub1>- <A href="http://www.teatroeducativo.org/doarq09.htm"><FONT size=2>FESTA - Federação</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq18.htm"><FONT size=2>Cons. Pedagóg. do Carmo</FONT></A><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq19.htm">FEBEM</A> (1)</FONT><BR>- <A href="http://www.teatroeducativo.org/doarq20.htm"><FONT size=2>Casa da Vovó Anita</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq33.htm"><FONT size=2>Ação Comunitária</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq23.htm"><FONT size=2>FEBEM (2)</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq24.htm"><FONT size=2>FEBEM (3)</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq34.htm"><FONT size=2>Gota de Leite</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40.htm"><FONT size=2>Escola Jardim Matilde</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40b.htm"><FONT size=2>Paróquia N.Sra.Pompéia</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40c.htm"><FONT size=2>Escola Santa Cecília</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40d.htm"><FONT size=2>Integraãoo Comunitária</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40e.htm"><FONT size=2>CAMP Cubatão</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40f.htm"><FONT size=2>Prefeitura Santos - SEDUC</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40g.htm"><FONT size=2>SESC - Bertioga</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40h.htm"><FONT size=2>Paróquia São Judas</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40i.htm"><FONT size=2>Apresentação Filantrópica</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq40j.htm"><FONT size=2>Prefeitura Cubatão</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq45.htm"><FONT size=2>Who´s Who Profisionals</FONT></A> </SPAN></P> <DIV class=menutitle style="WIDTH: 157px; HEIGHT: 18px" onclick="SwitchMenu('sub2')">Jornais</DIV><SPAN class=submenu id=sub2>-<FONT size=2> </FONT><A href="http://www.teatroeducativo.org/doarq01.htm"><FONT size=2>Visita ao jornal A Tribuna</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq03.htm"><FONT size=2>Domingo o show é quente</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq04.htm"><FONT size=2>Manhãs de Recreio</FONT></A><BR>-<FONT size=2> </FONT><A href="http://www.teatroeducativo.org/doarq05.htm"><FONT size=2>Gota de Leite</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq06.htm"><FONT size=2>Palhaços e lazer</FONT></A><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq10.htm">Dia dos pais no Asilo</A></FONT><BR>- <A href="http://www.teatroeducativo.org/doarq12.htm"><FONT size=2>Destaque em teatro</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq13.htm"><FONT size=2>Estréia do CAST</FONT></A><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq14.htm">Semana Afonso Schmidt</A></FONT><BR>- <A href="http://www.teatroeducativo.org/doarq16.htm"><FONT size=2>Trilhas da Liberdade</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq21.htm"><FONT size=2>Thereza Bueno Wolf</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq22.htm"><FONT size=2>Crianças excepcionais</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq26.htm"><FONT size=2>Teatro sadio</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq27.htm"><FONT size=2>Festival - juri mirim</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq28.htm"><FONT size=2>I Festival Teatro Infantil</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq29.htm"><FONT size=2>II Festival Teatro Infantil</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq30.htm"><FONT size=2>Festival - Ploc a borboleta</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq31.htm"><FONT size=2>Festival - prèmios</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq32.htm"><FONT size=2>Festival - opinião</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq35.htm"><FONT size=2>Curso de Teatro Infantil</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq35a.htm"><FONT size=2>Curso em Ribeirão Pires</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq37.htm"><FONT size=2>Curso para crianças</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq38.htm"><FONT size=2>Semana de Estudos</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq39.htm"><FONT size=2>Festa Brasil em São Carlos</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq42.htm"><FONT size=2>Recado para Maria</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq43.htm"><FONT size=2>Teatro na Escola</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq44.htm"><FONT size=2>Portaria 156</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq46.htm"><FONT size=2>Curso de Oratória</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq47.htm"><FONT size=2>Oficina Cultural S.Carlos</FONT></A><BR></SPAN><SPAN class=submenu></SPAN> <DIV class=menutitle style="WIDTH: 157px; HEIGHT: 18px" onclick="SwitchMenu('sub3')">Declarações</DIV><SPAN class=submenu id=sub3>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq02.htm">Declaração CEFAP</A>-SP</FONT><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq15.htm">Colégio Osvaldo Cruz</A></FONT><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq17.htm">Colégio Ateneu Santista</A></FONT><BR>- <FONT size=2><A href="http://www.teatroeducativo.org/doarq41.htm">Conservatório Musical</A></FONT><BR></SPAN> <DIV class=menutitle style="WIDTH: 156px; HEIGHT: 18px" onclick="SwitchMenu('sub4')">Outros</DIV><SPAN class=submenu id=sub4>- <A href="http://www.teatroeducativo.org/doarq07.htm"><FONT size=2>Cenas de Zanzalá </FONT></A><FONT size=2><BR>-&nbsp; <A href="http://www.teatroeducativo.org/doarq08.htm">O mar, a vida, um poeta</A></FONT><BR>- <A href="http://www.teatroeducativo.org/doarq11.htm"><FONT size=2>Comissariado de menores</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq25.htm"><FONT size=2>Recibo - pag. aulas</FONT></A><BR>- <A href="http://www.teatroeducativo.org/doarq36.htm"><FONT size=2>Faculdade S o Leopoldo</FONT></A><BR>&nbsp;</SPAN></DIV></TD></TR></TBODY></TABLE></CENTER></DIV> <DIV align=center> <CENTER> <TABLE id=AutoNumber8 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="100%" bgColor=#ffffff border=1> <TBODY> <TR> <TD width="100%"><IMG height=100 src="luzsobrelivro.gif" width=150 border=0></TD></TR> <TR> <TD width="100%">&nbsp;</TD></TR></TBODY></TABLE></CENTER></DIV></TD></TR></TBODY></TABLE></CENTER></DIV></CENTER></TD> <TD vAlign=top width=579 bgColor=#000000 height=1101> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><IMG height=50 src="projetoterv.jpg" width=230 border=0></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT face="Bookman Old Style" color=#ffff00 size=6>Teatro Educativo Roberto Villani</FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT face="Bookman Old Style" color=#ffff00 size=2></FONT></B>&nbsp;</P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT face="Bookman Old Style" color=#ff9900 size=2>1966 a 2010 = 44 anos de sonhos e realizações</FONT></B></P> <DIV align=center> <CENTER> <TABLE width="100%" border=0> <TBODY> <TR> <TD width="100%" bgColor=#000000> <DIV align=center> <TABLE height=63 width="94%" border=0> <TBODY> <TR> <TD borderColor=#ffffff align=middle width="100%" bgColor=#c0c0c0 height=59> <P align=center><FONT color=#808080></P> <DIV id=menu style="WIDTH: 610px; HEIGHT: 31px"> <UL> <LI class=first></FONT><FONT face=Arial color=#000080 size=2><B><FONT color=#ff0000>Home</FONT></B> </FONT><FONT face=Arial color=#808080 size=2><A href="http://www.meustextos.com/cronicas.html"><FONT color=#000080>&nbsp;</FONT></A></FONT><A href="http://www.teatroeducativo.org/pagehist.htm"><FONT face=Arial color=#000080 size=2>O início</FONT></A><FONT face=Arial color=#000080 size=2>&nbsp; <A href="http://www.teatroeducativo.org/pageproj.htm"><FONT color=#000080>Projetos</FONT></A>&nbsp; </FONT><A href="http://www.meustextos.com/informacoes.html"><FONT face=Arial color=#000080 size=2><A href="http://www.teatroeducativo.org/pageesco.htm">Na escola</A></FONT></A><FONT face=Arial color=#000080 size=2>&nbsp;&nbsp; <A href="http://www.meustextos.com/artigos.html"><FONT color=#000080><A href="http://www.teatroeducativo.org/pagedefi.htm">Com deficientes</A></FONT></A><A href="http://www.teatroeducativo.org/pagedefi.htm">&nbsp;</A>&nbsp;<A href="http://www.teatroeducativo.org/pagegrup.htm"> <FONT color=#000080>O grupo</FONT></A>&nbsp; </FONT> <LI class=first> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"><FONT face=Arial color=#000080 size=2><A href="http://www.teatroeducativo.org/pagefebe.htm"><FONT color=#000080>Na FEBEM</FONT></A> </FONT><FONT face=Arial color=#808080 size=2><A href="http://www.meustextos.com/cronicas.html"><FONT color=#000080>&nbsp;</FONT></A></FONT><A href="http://www.teatroeducativo.org/pagenucl.htm"><FONT face=Arial color=#000080 size=2>Núcleos</FONT></A><FONT face=Arial color=#000080 size=2>&nbsp;<A href="http://www.teatroeducativo.org/pageespe.htm"><FONT color=#000080>Espetáculos</FONT></A>&nbsp;<A href="http://www.teatroeducativo.org/pagefest.htm"> <FONT color=#000080>Festivais</FONT>&nbsp;</A>&nbsp; <A href="http://www.teatroeducativo.org/pagecurs.htm"><FONT color=#000080>Cursos e Palestras</FONT></A>&nbsp;&nbsp; <A href="http://www.meustextos.com/contato.html"><FONT color=#000080></FONT><FONT color=#000080><A href="http://www.teatroeducativo.org/pagemats.htm">Textos diversos</A></FONT></A><A href="http://www.teatroeducativo.org/pagemats.htm" target=_blank>&nbsp; </A></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"><FONT face=Arial color=#000080><A href="http://www.teatroeducativo.org/pagehoje.htm"><FONT color=#000080>O TERV hoje</FONT></A> </FONT><FONT face=Arial color=#808080><A href="http://www.meustextos.com/cronicas.html"><FONT color=#000080>&nbsp;</FONT></A></FONT></FONT><A href="http://www.meustextos.com/cronicas.html"><FONT face=Arial color=#000080 size=2></FONT><FONT face=Arial color=#000080 size=2></FONT><FONT face=Arial color=#000080 size=2><A href="http://www.teatroeducativo.org/pageploc.htm">Ploc, o sucesso!</A>&nbsp; <A href="http://www.teatroeducativo.org/pagebiog.htm">Roberto Villani&nbsp; </A></FONT></P></LI></UL></DIV></TD></TR> <TR> <TD width="13%" bgColor=#ffffff height=1> <P align=center> <P align=center>&nbsp;</P></TD></TR></TBODY></TABLE></DIV> <TABLE id=AutoNumber5 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="100%" border=1> <TBODY> <TR> <TD width="100%">asas</TD></TR></TBODY></TABLE> <CENTER> <P></P></CENTER> <DIV align=center> <TABLE width="100%" border=0> <TBODY> <TR> <TD width="5%"> <DIV align=left> <TABLE style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="110%" bgColor=#111111 border=1> <TBODY> <TR> <TD width="100%" bgColor=#000066>&nbsp; <TABLE id=AutoNumber2 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="80%" border=1> <TBODY> <TR> <TD width="24%"> <P align=center> <SCRIPT type=text/javascript> /*********************************************** * Translucent Slideshow script- Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var trans_width='240px' //slideshow width var trans_height='225px' //slideshow height var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds) var degree=10 //animation speed. Greater is faster. var slideshowcontent=new Array() //Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET] slideshowcontent[0]=["photo01.jpg", "", ""] slideshowcontent[1]=["photo02.jpg", "", ""] slideshowcontent[2]=["photo03.jpg", "", ""] slideshowcontent[3]=["photo04.jpg", "", ""] slideshowcontent[4]=["photo05.jpg", "", ""] slideshowcontent[5]=["photo06.jpg", "", ""] slideshowcontent[6]=["photo07.jpg", "", ""] slideshowcontent[7]=["photo08.jpg", "", ""] slideshowcontent[8]=["photo09.jpg", "", ""] slideshowcontent[9]=["photo10.jpg", "", ""] slideshowcontent[10]=["photo11.jpg", "", ""] slideshowcontent[11]=["photo12.jpg", "", ""] slideshowcontent[12]=["photo13.jpg", "", ""] slideshowcontent[13]=["photo14.jpg", "", ""] slideshowcontent[14]=["photo15.jpg", "", ""] slideshowcontent[15]=["photo16.gif", "", ""] slideshowcontent[16]=["photo17.gif", "", ""] slideshowcontent[17]=["photo18.jpg", "", ""] slideshowcontent[18]=["photo19.gif", "", ""] slideshowcontent[19]=["photo20.jpg", "", ""] ////NO need to edit beyond here///////////// var bgcolor='white' var imageholder=new Array() for (i=0;i<slideshowcontent.length;i++){ imageholder[i]=new Image() imageholder[i].src=slideshowcontent[i][0] } var ie4=document.all var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1 if (ie4||dom) document.write('<div style="position:relative;width:'+trans_width+';height:'+trans_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>') else if (document.layers){ document.write('<ilayer id=tickernsmain visibility=hide width='+trans_width+' height='+trans_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+trans_width+' height='+trans_height+' left=0 top=0>'+'<img src="'+slideshowcontent[0][0]+'"></layer></ilayer>') } var curpos=trans_width*(-1) var curcanvas="canvas0" var curindex=0 var nextindex=1 function getslidehtml(theslide){ var slidehtml="" if (theslide[1]!="") slidehtml='<a href="'+theslide[1]+'" target="'+theslide[2]+'">' slidehtml+='<img src="'+theslide[0]+'" border="0">' if (theslide[1]!="") slidehtml+='</a>' return slidehtml } function moveslide(){ if (curpos<0){ curpos=Math.min(curpos+degree,0) tempobj.style.left=curpos+"px" } else{ clearInterval(dropslide) if (crossobj.filters) crossobj.filters.alpha.opacity=100 else if (crossobj.style.MozOpacity) crossobj.style.MozOpacity=1 nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1" tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas) tempobj.innerHTML=getslidehtml(slideshowcontent[curindex]) nextindex=(nextindex<slideshowcontent.length-1)? nextindex+1 : 0 setTimeout("rotateslide()",pause) } } function rotateslide(){ if (ie4||dom){ resetit(curcanvas) crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas) crossobj.style.zIndex++ if (crossobj.filters) document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20 else if (crossobj.style.MozOpacity) document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2 var temp='setInterval("moveslide()",50)' dropslide=eval(temp) curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0" } else if (document.layers){ crossobj.document.write(getslidehtml(slideshowcontent[curindex])) crossobj.document.close() } curindex=(curindex<slideshowcontent.length-1)? curindex+1 : 0 } function jumptoslide(which){ curindex=which rotateslide() } function resetit(what){ curpos=parseInt(trans_width)*(-1) var crossobj=ie4? eval("document.all."+what) : document.getElementById(what) crossobj.style.left=curpos+"px" } function startit(){ crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub if (ie4||dom){ crossobj.innerHTML=getslidehtml(slideshowcontent[curindex]) rotateslide() } else{ document.tickernsmain.visibility='show' curindex++ setInterval("rotateslide()",pause) } } if (window.addEventListener) window.addEventListener("load", startit, false) else if (window.attachEvent) window.attachEvent("onload", startit) else if (ie4||dom||document.layers) window.onload=startit </SCRIPT> <P align=center><FONT face=arial size=-2></FONT><BR><FONT face="arial, helvetica" size=-2><A href="http://www.teatroeducativo.org/%3C/a"></FONT></P></A></TD></TR></TBODY></TABLE> <P align=center>&nbsp;</P></TD></TR> <CENTER></TBODY></TABLE></DIV></CENTER></TD> <TD width="51%" bgColor=#cc9933> <DIV align=center> <TABLE width="100%" bgColor=#000080 border=1> <TBODY> <TR> <TD width="100%"> <P align=justify><B><SPAN style="FONT-SIZE: 10pt; COLOR: #ffcc00; FONT-FAMILY: Arial"><STRONG><SPAN style="FONT-FAMILY: Arial">"...Ao Teatro Educativo que ostenta o seu nome e aos professores integrantes de seu grupo de trabalho, faço votos de que prossigam na busca de um ideal sadio e construtivo..." <I>a) AIRTON SANTOS VARGAS&nbsp; -&nbsp; Secretário de Educação e Cultura do Estado do Rio Grande do Sul - 1977 </I></SPAN></STRONG></SPAN></B></P> <P align=justify><B><SPAN style="FONT-SIZE: 12pt; COLOR: #ffcc00; FONT-FAMILY: Arial"><STRONG><SPAN style="FONT-FAMILY: Arial">"</SPAN></STRONG></SPAN><STRONG><SPAN style="COLOR: #ffcc00; FONT-FAMILY: Arial"><FONT size=2>...A imagem que passamos às suas mãos - cumprimento que trocamos - a verdade de ideais irmãos que o sopro da existência generalizou e que sentimentos afins reuniram, para que Vossa Senhoria, talentoso, diletante, capaz, ofereça a sociedade do seu País, trabalho sério, consagrado pelos aplausos que vem recebendo nestes dez anos de Teatro Educativo..." </FONT><I><FONT size=2>a) PROF. ILDEFONSO PAZ DIAS&nbsp; -&nbsp; Presidente do Sindicato dos Professores de Santos - 1977</FONT></I></SPAN></STRONG></B></P> <DIV align=center> <TABLE cellSpacing=0 cellPadding=0 width="100%" bgColor=#ffffff border=1> <TBODY> <TR> <TD align=middle width="100%"> <P align=center><FONT size=1><STRONG><A href="http://www.teatroeducativo.org/informa.html" target=_blank>CURSO DE TEATRO EDUCATIVO POR E-MAIL - CLIQUE AQUI</A></STRONG></FONT></P></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV> <DIV align=center> <TABLE height=12 cellPadding=5 width="100%" bgColor=#ff0000 border=0> <TBODY> <TR> <TD width="68%" bgColor=#000000 height=8> <DIV align=center> <TABLE height=227 width="98%" border=0> <TBODY> <TR> <TD width="100%" bgColor=#ff9900 height=20> <P align=center><B><FONT color=#ffffff size=4>Desde 1966, mais de 5 mil passaram pelo TERV !&nbsp;</FONT></B></P></TD></TR> <TR> <TD align=middle width="100%" bgColor=#ffff00 height=65><B><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><!--[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="_x0000_s1027" type="#_x0000_t75" alt="" style='width:10.5pt; height:8.25pt'> <v:imagedata src="page01_arquivos/image001.gif" o:href="mail.gif"/> </v:shape><![endif]--><![if !vml]><img border=0 width=14 height=11 src="page01_arquivos/image001.gif" v:shapes="_x0000_s1027"><![endif]><STRONG><SPAN style="FONT-FAMILY: Arial">"Coloquei um link em minha página "Giovanni's Home Page" para o seu belo, altruísta e humanitário site. O seu trabalho merece todo o apoio e louvor..."&nbsp; - <I>e-mail enviado pelo Dr Giovanni Rodrigues Martins - Médico do Ministério da Saúde, em 1</I><SUP>o</SUP><I> de março de 1998 - 17:45h.</I> </SPAN></STRONG></SPAN></B></TD></TR> <TR> <TD align=middle width="100%" bgColor=#000000 height=130><DIV style="WIDTH: 465px; HEIGHT: 111px" align=center> <TABLE class=MsoNormalTable style="WIDTH: 100%" height=122 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; BACKGROUND: #000066; PADDING-BOTTOM: 0.75pt; WIDTH: 50%; PADDING-TOP: 0.75pt" width="50%" height=120> <P style="TEXT-ALIGN: center" align=center><B><SPAN style="FONT-SIZE: 10pt; COLOR: #ffcc00; FONT-FAMILY: Arial"><!--[if gte vml 1]><v:shape id="_x0000_s1028" type="#_x0000_t75" alt="" style='width:11.25pt;height:8.25pt'> <v:imagedata src="page01_arquivos/image001.gif" o:href="mail.gif"/> </v:shape><![endif]--><![if !vml]><img border=0 width=15 height=11 src="page01_arquivos/image001.gif" v:shapes="_x0000_s1028"><![endif]><STRONG><SPAN style="FONT-FAMILY: Arial">"... Na certeza que brevemente o veremos, dando continuidade ao seu trabalho de promover o Teatro Infantil e Recreativo, mais uma vez expressamos os nossos cumprimentos por seu idealismo e pelo belo trabalho em prol do Teatro Educativo e das Artes." - <I>e-mail enviado pela Professora Dra Lúcia Maria Teixeira Furlani - Diretora-Presidente do ISESC, mantenedora da Universidade Santa Cec lia de Santos,SP, em 22 de junho de 1999 - 14:07h.</I></SPAN></STRONG></SPAN></B></P></TD></TR></TBODY></TABLE></DIV> <P align=center><FONT face=Arial color=#ffcc00 size=2><STRONG> <IMG height=11 src="mail.gif" width=14 border=0> "Tendo percorrido a home-page do TERV, parabenizo-o pela profundidade e excelência do trabalho realizado, há longos anos, em prol de nossas crianças. Esse espetáculo não pode parar... Cumpre-nos auxiliá-lo nesta empreitada maravilhosa e profícua. Conte comigo!..." - <I>e-mail enviado pelo Dr Luís Antônio Panone - Presidente da OAB de Descalvado,SP, em 25 de setembro de 2001</I></STRONG></FONT><STRONG><I><FONT face=Arial color=#ffcc00 size=2> - 16:20h.</FONT></I><FONT size=2><FONT color=#ffcc00> </FONT></FONT></STRONG></P></TD></TR></TBODY></TABLE></DIV></TD> <CENTER> <TD width="7%" bgColor=#ffffff height=8><IMG height=180 src="lgterv2.gif" width=112 border=0> <DIV align=center> <CENTER> <TABLE id=AutoNumber3 style="BORDER-COLLAPSE: collapse" borderColor=#008000 cellSpacing=0 borderColorDark=#000066 cellPadding=0 width="90%" bgColor=#ffffff borderColorLight=#ffcc00 border=3> <TBODY> <TR> <TD width="100%"> <P align=center><IMG height=90 src="porninf.jpg" width=79 border=0></P></TD></TR></TBODY></TABLE></CENTER></DIV></TD></TR></TBODY></TABLE></DIV> <DIV align=center> <TABLE width="100%" border=3> <TBODY> <TR> <TD align=middle width="100%" bgColor=#ff0000> <DIV align=center> <TABLE width="97%" border=2> <TBODY> <TR> <TD align=middle width="100%" bgColor=#00ffff> <DIV align=center> <TABLE width="96%" bgColor=#ffffff border=1> <TBODY> <TR> <TD width="100%" bgColor=#000066> <P align=center><FONT color=#ffcc00><IMG height=32 src="jornal.gif" width=32 border=0></FONT><STRONG><FONT face=Arial color=#ffcc00 size=1>&nbsp;</FONT><FONT face=Arial color=#ffcc00 size=2>"à medida que fui conhecendo o Teatro Educativo do Prof. Villani, fui sendo tomado por uma grande vontade de colocar a Divisão de Cultura como parceira na execução de todos os seus projetos. Diria mesmo que a implantação de uma célula de Teatro Educativo uma necessidade no meio cultural do município..." - <I>PROF. PAULO ROBERTO SAGGIORATTO - Diretor de Cultura de Descalvado-SP, em março de 2003.</I></FONT></STRONG></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT face=Arial color=#ffcc00 size=2>&nbsp;<IMG height=11 src="mail.gif" width=14 border=0> "Oi Sr.Villani!<BR>Estou aqui nos seus dados biográficos e surpresa, realmente, por tudo que o Sr. já empreendeu. A sua proposta tão grandiosa quanto original. Acho que posso considerá-lo um daqueles elementos geniais e sonhadores que abrem trilhas em matas fechadas ... embora se pague um preço sempre muito alto por "enxergar" e trazer aquilo que é inédito à luz do conhecimento humano. Estou honrada em ter passado por aqui e com o mais profundo respeito, ter deixado o meu singelo pensamento sobre o seu vastíssimo ideal. Fraterno abraço de Fátima Irene." -&nbsp; <I>e-mail enviado pela poeta, escritora, Fátima Irene, em 19/07/2003 - 22:07h. </I></FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><I><FONT face=Arial color=#ffccff size=2>Convido-os a visitarem a Poeta Fátima Irene no endereço </FONT><FONT face=Arial color=#ffccff size=2><A style="TEXT-DECORATION: underline" href="http://www.fatimairene.com/" target=_blank><FONT color=#ffccff>http://www.fatimairene.com</FONT></A></FONT><FONT face=Arial color=#ffccff size=2>. algo inesquecível o seu trabalho. </FONT></I></B></P></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV> <DIV align=center> <TABLE borderColor=#ff0000 borderColorDark=#ff0000 width="100%" borderColorLight=#ffffff border=2> <TBODY> <TR> <TD align=justify width="100%" bgColor=#dfdfdf> <P class=MsoPlainText style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px"><B><FONT size=2>&nbsp;</FONT><FONT face=Arial size=2><IMG height=11 src="mail.gif" width=14 border=0>&nbsp; </FONT>&quot;Roberto Villani, Meu professor.</B></P> <p class="MsoPlainText" style="margin-top: 0; margin-bottom: 0"><b> Talvez você não se lembra mais de mim , porém há muito tempo quero te fazer um agradecimento. Muito obrigado pelo tempo em que fui seu aluno em Santos. Meu nome : Luiz Emilio , estudei com você no colégio Ateneu Santista, Em minha vida profissional utilizo sempre os seus ensinamentos , e por isso gostaria de lhe agradecer; e quem sabe até pessoalmente se for de sua vontade. Abraços.</b></p> <p class="MsoPlainText" style="margin-top: 0; margin-bottom: 0"><b> Luiz Emilio Santos Maciel  (na época fiz o Saci Pererê,fiz o Jurubu e</b></p> <p class="MsoPlainText" style="margin-top: 0; margin-bottom: 0"><b> outros , inclusive em São Carlos.&quot; - e-mail enviado em 23/11/2004.</b><TABLE width="100%" bgColor=#000080 border=1> <TBODY> <TR> <TD width="100%" bgColor=#ffff00> <DIV align=center> <TABLE width="100%" border=1> <TBODY> <TR> <TD width="100%" bgColor=#ffffff> <P align=center><B><FONT size=1><A href="http://www.teatroeducativo.org/informa.html" target=_blank>SAIBA COMO SER MONITOR DE TEATRO EDUCATIVO - CLIQUE AQUI</A></FONT></B></P></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></CENTER> <DIV align=center> <TABLE height=62 width="100%" border=0> <TBODY> <TR> <TD width="33%" bgColor=#c0c0c0 height=1> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2>Espa o reservado para colaboradores e parcerias. </FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2><A href="mailto:mestrevillani@gmail.com">Entre em contato.&nbsp;</A>&nbsp;&nbsp;&nbsp;&nbsp;</FONT></B></P></TD> <CENTER> <TD width="33%" bgColor=#c0c0c0 height=1> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2>Espa o reservado para</FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2>&nbsp;colaboradores e parcerias. </FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2><A href="mailto:mestrevillani@gmail.com">Entre em contato.&nbsp;</A>&nbsp;&nbsp;&nbsp;&nbsp;</FONT></B></P></TD> <TD width="34%" bgColor=#c0c0c0 height=1> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2>Espa o reservado para </FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2>colaboradores e parcerias. </FONT></B></P> <P style="MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px" align=center><B><FONT size=2><A href="mailto:mestrevillani@gmail.com">Entre em contato.&nbsp;</A>&nbsp;&nbsp;&nbsp;&nbsp;</FONT></B></P></TD></TR></TBODY></TABLE></DIV></CENTER></TD></TR></TBODY></TABLE></DIV> <DIV align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="106%" border=1> <TBODY> <TR> <TD width="100%"> <font color="#FFCC00"><b> <img border="0" src="mail.gif" width="15" height="11"> Olá Professor Villani,</b><br> A<b>dmiro muito seu trabalho. Parabéns! Sou voluntário na Escola Municipal Darcy Ribeiro de Guarapari, ES. Trabalho com oficinas de teatro. Quando passei a conhecer seu trabalho, fiquei mais animado. Vi que estou no caminho certo, é possível formar cidadãos através deste veículo. Que o Deus da vida possa te abençoar hoje e sempre.<br> Grande abraço<br> Atenciosamente<br> Padre José Carlos Timoteo, SDN (mensagem enviada em 14/05/2008 através do Orkut).</b></font></TD></TR> <TR> <TD width="100%" bgColor=#008000> <P class=Normal1 style="MARGIN: 0cm 0cm 0pt" align=justify><FONT color=#ffcc00><B> <IMG height=11 src="mail.gif" width=15 border=0> </B></FONT></P> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Boa tarde& </span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Em primeiro lugar quero felicita-lo pelo sua grandiosa obra, pelo grande contributo que tem dado na educação. Actividades lúdicas que contribuem para o desenvolvimento dos indivíduos, quer na vertente educacional, social e até mesmo cultural. &nbsp;</span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700"> Usamos um espelho para ver o rosto; usamos as obras de arte para ver a alma. </span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Todo o seu trabalho é uma forma de arte, por esse motivo quase adivinho a magnífica pessoa que deve ser.</span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Passo à minha apresentação.</span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Chamo-me Hélder Reis, falo de Portugal mais concretamente da cidade do Porto. Sou animador sócio-cultural, seu grande admirador, apesar de ter conhecimento à muito pouco tempo o seu trabalho, mais concretamente à 3 dias. Tenho sistematicamente, sempre que possível, &nbsp;lido tudo sobre teatro educativo, a sua biografia, etc& </span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Gostaria de ter mais informações acerca do curso didáctico de teatro educativo por e-mail. </span> </p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Creio que a distância não é uma barreira para o conhecimento. </span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Com os melhores cumprimentos </span></p> <p class="Normal1" style="margin:0cm;margin-bottom:.0001pt"> <span style="color: #FFCC00; font-weight: 700">Hélder Reis (mensagem enviada em 18/07/2008)</span></TD></TR> <TR> <TD width="100%" bgColor=#ff0000> <P class=MsoPlainText style="MARGIN-TOP: 1px; MARGIN-BOTTOM: 1px" align=justify><B><FONT face=Arial color=#ffcc00 size=2> <IMG height=11 src="mail.gif" width=14 border=0> </FONT> <font color="#FFCC00">&quot;Oi, eu tenho 12 anos, me chamo Fernanda,&nbsp; vou fazer um teatro que você criou e gostaria de te parabenizar. O grupo de teatro daqui da cidade de Cabo Verde MG vai apresentar a peça &quot;No Bosque dos Sabiás&quot; e eu talvez vou fazer a &quot;Lucinha&quot;. Meus parabéns, você é muito criativo e quando eu crescer gostaria de ser igual você. Espero que você receba esse e-mail e me responda.</font></B></P> <p class="MsoPlainText" style="margin-top: 0; margin-bottom: 0"><b> <font color="#FFCC00">Beijos de uma pessoa que te admira. </font></b> </p> <p class="MsoPlainText" style="margin-top: 0; margin-bottom: 0"><b> <font color="#FFCC00">Fernanda&quot; - e-mail enviado por Fernanda Leite Garcia, em 12/11/2004.</font></b></TD></TR></TBODY></TABLE></CENTER></DIV> <TABLE cellSpacing=3 cellPadding=0 width=621 bgColor=#000000 border=2> <TBODY> <TR> <TD width=31 bgColor=#000000> <P align=center><IMG height=27 src="talis.gif" width=20 border=0></P></TD> <TD width=506 bgColor=#ff00ff> <P align=center><STRONG><IMG height=11 src="mail.gif" width=14 border=0> "<SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: Times New Roman">Roberto una vez mas quiero agradecerte por el talento que<BR>regalas a la humanidad y por ese ser que habita en ti, te<BR>dejo este mensaje aqui para que el mundo lo lea..." -&nbsp; ISABEL CABRERA, PANAM </SPAN></STRONG><!--Inicio do link para servico InterSites.--> -<B> 2001</B><BR><A href="http://www.intersites.com.br/" target=_top><FONT size=2>Associado InterSites</FONT></A></P></TD> <TD width=62 bgColor=#000000> <P align=center><A href="mailto:mestrevillani@gmail.com"><IMG height=34 src="e-mail.gif" width=105 border=0></A></P></TD></TR></TBODY></TABLE></CENTER></TD></TR></TBODY></TABLE></DIV></CENTER> <DIV align=center> <CENTER> <TABLE id=AutoNumber7 style="BORDER-COLLAPSE: collapse" borderColor=#111111 cellSpacing=0 cellPadding=0 width="80%" border=1> <TBODY> <TR> <TD width="100%"> <P align=center><FONT color=#ffffff size=1>Copyright Roberto Villani 2010 - Todos os direitos reservados</FONT></P></TD></TR></TBODY></TABLE></CENTER></DIV></BODY></HTML>