<?
/**
*
*Funções "úteis"
*
*@package	Scielo.org
*@version      1.2
*@author       André Otero(andre.otero@bireme.org)
*@copyright     BIREME
*/
require_once(dirname(__FILE__)."/../classes/domit-1/xml_domit_lite_include.inc.php");
require_once(dirname(__FILE__)."/../../../php/include.php");

/**
 * Extrai os titulos do XML
 * 
 * Retorna (se possivel) o Titulo do artigo no mesmo idioma da interface Scielo,
 * se não encontra um Titulo no idioma corrente retorna o 1o titulo encontrado
 * 
 * 07/08/2007 -> Adicionado o parametro lang. Antes as vezes tinha no mesmo idioma,
 * mas retornava de outro porque $lang era NULL
 *
 * @param String authorsXML XML contendo os titulos
 * @retuns String String com titulo
 */
function getTitle($titleXML, $lang = '')
{
    $domLiteDocument =& new DOMIT_Lite_Document();
    $domLiteDocument->parseXML($titleXML);
    $nodes =& $domLiteDocument->getElementsByPath("/TITLES/TITLE");
    /*
    por padrão vai o primeiro title que ele achar
    */
    $node = $nodes->item(0);
    if($node)
        $article_title = $node->getText();
    /*
    procura um titulo no lang corrente para exibir
    */
	
    for($j = 0; $j < $nodes->getLEngth(); $j++)
	{
        $node = $nodes->item($j); 
        $lang_article = $node->getAttribute("LANG");
        if($lang_article == $lang)
        $article_title = $node->getText();
    }

    return  utf8_encode($article_title);
}

/**
*Extrai os autores do XML e retorna uma String com os nomes em forma de link
*
*Para cada autor no XML, monta um link para pesquisa no IAH do Scielo onde
*o artigo esta.
*
*@param String authorsXML XML contendo os autores
*@param boolean link Informa se a função irá devolver uma string com Links para busca por autor via iAH na Instancia
*@param String domain Dominio da instancia Scielo para onde será apontada a busca pelo autor
*@retuns String String com os autores com ou sem link para pesquisa iAH
*/
function getAutors($authorsXML, $link=false,$domain=""){

    $domLiteDocument =& new DOMIT_Lite_Document();
    $sucess = $domLiteDocument->parseXML(str_replace("\\\\\\","",$authorsXML));

	$article_autors = "";
/**
* $sucess indica que o XML foi "parseado" com sucesso, e é bem formado
*/
	if($sucess)
	{
		$names =& $domLiteDocument->getElementsByPath("//NAME");
		$surnames =& $domLiteDocument->getElementsByPath("//SURNAME");

		for($n = 0; $n < $names->getLEngth();$n++)
		{
			$nameNode = $names->item($n);
			$surnameNode = $surnames->item($n);

			$nameText = $nameNode->getText();
			$surnameText = $surnameNode->getText();
			$searchText = str_replace(" ","+",$nameText . $surnameText);

			if(!$link)
			{
				$article_autors .= $surnameText .", ".$nameText."; ";
			}else{
				$searchText = urlencode(str_replace(" ","+",$surnameText ." " .$nameText));
				if(!strstr($domain,"http://"))
				{
					$domain = "http://".$domain;
				}
				$url = $domain."/cgi-bin/wxis.exe/iah/?IsisScript=iah/iah.xis&base=article^dlibrary&format=iso.pft&lang=i&nextAction=lnk&indexSearch=AU&exprSearch=".$searchText;

				$article_autors .= '<a href="'.$url.'" target="blank">'. $surnameText .", ".$nameText."; </a> ";
			}
		}
	}
		$article_autors = substr($article_autors,0,strlen($article_autors)-1);
		return utf8_encode($article_autors);
}

/**
*Exporta dados bibliográficos para BibTex
*
*Exporta dados bibliográficos para BibTex
*
*@param String entryType Tipo de referencia (livro, artigo, etc) caso seja fornecida uma referencia invalida sera retornada uma msg de erro contendo a lista válida de entidades
*@param Array fields Array associativo 'field' => 'valor', se informado, será ignorado os demais argumentos
*@param String author 
*@param String title
*@param String journal
*@param String volume
*@param String number
*@param String year
*@param String abstract
*@returns String Os dados do artigo no formato BibTex
*/
function export2BibTeX($entryType = '', $fieldsArray=array(), $author = '', $title = '', $journal = '',
																$volume = '', $number = '', $year = '', $abstract = ''){

/**
*"Carimbo" de um registro BibTex
*/

$BibTeXRecord = "@entryType{citKey,\nfields\n}";

/**
*Tipos de entidade padrão
*/
	$entryTypes = array('article', 'book','booklet','conference','inbook','incollection',
									'inproceedings','manual','mastersthesis','misc','phdthesis',
									'proceedings','techreport','unpublished','patent','collection');
/**
*Nomes dos campos padrão
*/
	$fieldNames = array('address', 'annote', 'author', 'booktitle', 'chapter', 'crossref', 'edition', 'editor',
									'howpublished', 'institution', 'journal', 'key', 'month', 'note', 'number', 'organization',
									'pages', 'publisher', 'school', 'series', 'title', 'type', 'volume', 'year', 'affiliation',
									'abstract', 'contents', 'copyright', 'ISBN', 'ISSN', 'keywords', 'language',
									'location', 'LCCN', 'mrnumber', 'price', 'size', 'URL');

	if(!in_array($entryType,$entryTypes))
	{
		return "Os tipos de registro válidos são: ".print_r($entryTypes,true);
	}
/**
* Se esta usando o parametro fields, verifica se todos os nomes de campos estao OK, depois monta o registro
*/


	if(count($fieldsArray) > 0)
	{

		$fieldErrors = "";

		//verificando se os campos sao "validos"
		foreach($fieldsArray as $field => $value )
		{
			if(!in_array($field, $fieldNames)){
				$fieldErrors .= " ". $field ." ";
			}else{
				$fields .= "\t".$field . " = {" .$value."},\n";
			}
		}
		//se tem erros retorna quais os campos invalidos . . .
		if($fieldErrors != "")
		{
			return "Os seguintes campos sao invalidos: " . $fieldErrors;
		}else{
			//tirando a virgula "extra" que sobra
			$fields = substr($fields, 0, strlen($fields)-2);
		}
	}else{
/**
* Se não esta usando o parametro fields, monta o registro com os valores não nulos dos demais parametros
*/	
		$fields = "";


		if($author != ""){
			$fields .= "\tauthor = {".$author."},\n";
		}
		if($title != ""){
			$fields .= "\ttitle = {".$title."},\n";
		}

		if($journal != ""){
			$fields .= "\tjournal = {".$journal."},\n";
		}

		if($volume != ""){
			$fields .= "\tvolume = {".$volume."},\n";
		}
		if($number != ""){
			$fields .= "\tnumber = {".$number."},\n";
		}
		if($year != ""){
			$fields .= "\tyear = {".$year."},\n";
		}
		if($abstract != ""){
			$fields .= "\tabstract = {".$abstract."},\n";
		}

		if($fields != "")
		{
			//tirando a virgula "extra" que sobra
			$fields = substr($fields, 0, strlen($fields)-2);
		}else{
			return "Informe uma matriz contendo os campos=>valores ou preencha os demais parametros de chamada";
		}
	}
/**
* Se ele o PHP chegou até aqui é pq não deu erro.
*/
	$search = array('@entryType@si',"@citKey@si","@fields@si");
	$replace = array($entryType, 'scielo:cit', $fields);

	return preg_replace($search, $replace, $BibTeXRecord);
}


?>
<?
/**
* definiÃ§Ã£o das constantes para os rÃ³tulos dos formulÃ¡rios
* usados para multilanguage
*/

include_once(dirname(__FILE__)."/../../../php/include.php");

$ini = parse_ini_file(dirname(__FILE__)."/../scielo.def.php" , true);
$url = $ini['scielo_org_urls']['home'];

$langs = array("pt","en","es");

if(!in_array($lang,$langs)){
	$lang = "pt";
}

if($lang == "pt")
{
/*
rÃ³tulo tela ofigraph20.php
*/
define("RANKING_MOST_VISITED_JOURNALS","Ranking de revistas mas visitadas");
define("VISITED_ARTICLES_BY_MONTH","NÃºmero de artigos visitados por mÃªs");
define("OFIGRAPH21_SENTENCE1","Artigos visitados em um tÃ­tulo, agrupados por mÃªs");
define("OFIGRAPH21_SENTENCE2","Todos artigos visitados dos seguintes tÃ­tulos");
define("OFIGRAPH21_LIBRARY_COLLECTION","ColeÃ§Ã£o da Biblioteca");
define("OFIGRAPH21_SELECT_JOURNAL","Selecione um tÃ­tulo");
define("OFIGRAPH21_SEE_THE_DATA","veja os dados");


/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","Projetos FAPESP");

/*
rÃ³tulos tela CLINICAL TRIAL
*/
define("CLINICALTRIALS","Ensaios ClÃ­nicos");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Indicadores de SaÃºde");

/*
rÃ³tulos tela Article References
*/
define("SCIELO.ORG"," indicou um artigo para vocÃª.");
define("ARTICLE_REFERENCES","ReferÃªncias do Artigo");
define("ARTICLE_TRANSLATION","TraduÃ§Ã£o automÃ¡tica utilizando o serviÃ§o Windows Live Translator e Google Translator");
define("ARTICLE_TRANSLATION_WARNING","Este serviÃ§o Ã© uma traduÃ§Ã£o automÃ¡tica que nÃ£o foi revista pelo autor e pode ter imperfeiÃ§Ãµes.");
define('NO_DATA_FOR_GRAPHIC','GrÃ¡fico nÃ£o disponÃ­vel, dados em processamento.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","Email do destinatÃ¡rio:");
define("TO_NAME","Nome do destinatÃ¡rio:");
define("COMMENTS","ComentÃ¡rios:");
define("ARTICLE_TITLE","TÃ­tulo: ");
define("ARTICLE_SUGGESTION","SciELO: Artigo recomendado de ");
/*
rÃ³tulos para a tela envio de nova senha
*/
define("FORGOT_TITLE","Envio de nova senha");
define("BUTTON_SEND_NEW_PASSORD","Enviar nova senha");
define("UNKNOW_USER_ERROR","UsuÃ¡rio nÃ£o encontrado");
define("SEND_NEW_PASSWORD_SUCCESS","Senha enviada com sucesso !!!");

/*
rÃ³tulos para a tela de login
*/
define("HELLO_STRING","OlÃ¡, ");
define("EDIT_USER_DATA","Meus dados");
define("LOGIN_TITLE","Login de usuÃ¡rio");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Sair");
define("FORGOT_PASSWORD","Enviar-me nova senha  ");
define("REGISTER","Cadastre-se");
define("FOR_SERVICES","para serviÃ§os personalizados");
define("LOGIN_ERROR","Login/Senha invÃ¡lidos");
define("FIELD_LOGIN_ALREADY_EXISTS","Login jÃ¡ existe !!!");
define("REQUIRED_FIELD_TEXT"," * Campos ObrigatÃ³rios");
define("LOGOUT_DONE","Logout realizado com sucesso !!!");
define("NOT_LOGED","UsuÃ¡rio nÃ£o logado, por favor, visite <a target=\"_blank\" href=\"".$url."\">Scielo</a> e se logue");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","Cadastro de Novo UsuÃ¡rio");
define("UPDATE_USER_TITLE","AtualizaÃ§Ã£o dos dados");
define("FIELD_FIRST_NAME","Nome");
define("FIELD_LAST_NAME","Sobrenome");
define("FIELD_GENDER","Sexo");
define("FIELD_GENDER_MALE","Masculino");
define("FIELD_GENDER_FEMALE","Feminino");
define("FIELD_PASSWORD","Senha");
define("FIELD_PASSWORD_CONFIRMATION","ConfirmaÃ§Ã£o");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(somente preencha caso deseje alterar sua senha)");
define("FIELD_EMAIL","E-Mail");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","InstituiÃ§Ã£o");
define("FIELD_DEGREE","Select|Selecione,Ensino_Fundamental|Ensino Fundamental (1o Grau),Ensino_Medio|Ensino MÃ©dio (2o Grau),Ensino_Tecnico|Ensino Profissional De NÃ­vel TÃ©cnico,Graduacao|GraduaÃ§Ã£o,Especializacao|EspecializaÃ§Ã£o,Mestrado_Profissionalizante|Mestrado Profissionalizante,Mestrado|Mestrado,Doutorado|Doutorado,MBA|MBA,Pos_Doutorado|PÃ³s Doutorado,PHD|PHD");
define("STEP","Passo");
define("OF","de");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Artigo adicionado Ã  coleÃ§Ã£o com sucesso !!!");
define("REMOVE_FROM_SHELF_OK","Artigo removido da coleÃ§Ã£o com sucesso !!!");
define("REMOVE_CITED_ALERT_OK","Alerta de citaÃ§Ã£o removido com sucesso !!!");
define("REMOVE_ACCESS_ALERT_OK","Alerta de acesso removido com sucesso !!!");
define("ALERT_CITED_OK","Aviso quando for citado cadastrado com sucesso !!!");
define("ALERT_ACCESSED_OK","Cadastro para envio de estatÃ­sticas de acesso realizado com sucesso !!!");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Dados pessoais");
define("PROFILE","Perfil");
define("PROFILES","Perfis");
define("VIEW_BY","Visualizar Lista por");
define("MY_SHELF","Minha ColeÃ§Ã£o");
define("MY_LINKS","Meus Links");
define("MY_NEWS","Minhas Noticias");
define("MY_ARTICLE_PROFILE","Artigos do Perfil");
define("MY_NEW_ARTICLE_PROFILE","Artigos Novos do Perfil");
define("ORDER_BY","Ordenado por");
define("RELEVANCE","RelevÃ¢ncia");
define("DATE","Data");
define("MY_ALERTS","Meus Alertas");
define("REMOVE_FROM_SHELF","Remover da coleÃ§Ã£o");
define("CITATIONS","CitaÃ§Ãµes");
define("ACCESS_STATS","EstatÃ­sticas de acessos");
define("ARTICLE_ACCESS","Acessos ao Artigo");
define("ACCESSES","Acessos");
define("MONTHS","Meses");
define("REMOVE_ALERT","Remover alerta");
define("REMOVE_ACCESS_ALERT","NÃ£o receber mais alertas de acessos desse artigo");
define("REMOVE_CITED_ALTER","NÃ£o receber mais alertas de citaÃ§Ã£o desse artigo");
define("MONTH_LIST", "jan,fev,mar,abr,mai,jun,jul,ago,set,out,nov,dez");
define("CITED_BY","Citado Por");
define("SIMILARYS_IN","Similares em");
define("COMMENTS_ARTICLE","ComentÃ¡rios");
define("COMMENTS_ADD","(Adicionar ComentÃ¡rios)");
define("COMMENTS_USER_AUTHOR","*Nome: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Enviar");
define("COMMNETS_USER_COMMENT","*ComentÃ¡rio:");
define("COMMNETS_MESSAGE_BLOG_INI","Por favor efetuar ");
define("COMMNETS_MESSAGE_BLOG_FIM"," se deseja enviar um comentÃ¡rio.");
define("COMMNETS_DONT_BLOG","Esta revista nÃ£o pode receber comentÃ¡rios.");
define("COMMNETS_MESSAGE_ERRO_1","Desculpe, mas vocÃª sÃ³ pode postar um novo comentÃ¡rio uma vez a cada 15 segundos.");
define("COMMNETS_MESSAGE_ERRO_2","Menssagem enviada anteriormente.");
define("COMMNETS_MESSAGE_INFO_1","ComentÃ¡rio enviado por: ");
define("COMMNETS_MESSAGE_INFO_2",", aguarde aprovaÃ§Ã£o.");
define("CHAR_LIMIT","Limite de 1024 caracteres | restantes : ");
define("SEE","Ver");
define("SEE_HISTORY","Ver HistÃ³rico");
define("CHOOSE_PERIOD", "Escolha por ano:");
define("START_YEAR", "De:");
define("LAST_YEAR", "AtÃ©:");
define("BUTTON_REFRESH", "Atualizar grÃ¡fico");
define("GRAFIC_STATS_FALSE", "NÃ£o existem dados estatÃ­sticos para o perÃ­odo selecionado");
/*
define("ENGLISH_GERMAN","InglÃªs->AlemÃ£o");
define("ENGLISH_ARABIC","InglÃªs->Ãrabe");
define("ENGLISH_CHINESE_S","InglÃªs->Chines simplificado");
define("ENGLISH_CHINESE_T","InglÃªs->Chines tradicional");
define("ENGLISH_KOREAN","InglÃªs->Coreano");
define("ENGLISH_SPANISH","InglÃªs->Espanhol");
define("ENGLISH_FRENCH","InglÃªs->FrancÃªs");
define("ENGLISH_DUTCH","InglÃªs->HolandÃªs");
define("ENGLISH_ITALIAN","InglÃªs->Italiano");
define("ENGLISH_JAPANESE","InglÃªs->JaponÃªs");
define("ENGLISH_PORTUGUESE","InglÃªs->PortuguÃªs");
define("FRENCH_GERMAN","FrancÃªs->AlemÃ£o");
define("FRENCH_ENGLISH","FrancÃªs->InglÃªs");
define("SPANISH_ENGLISH","Espanhol->InglÃªs");
define("PORTUGUESE_ENGLISH","PortuguÃªs->InglÃªs");
*/
/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Perfil 1");
define("FIELD_PROFILE_TWO","Perfil 2");
define("FIELD_PROFILE_TREE","Perfil 3");
define("FIELD_PROFILE_NAME","Nome");
define("FIELD_PROFILE_DESCRIPTION_TEXT","DescriÃ§Ã£o");
define("BUTTON_NEW_USER","Gravar");
define("BUTTON_UPDATE_USER","Atualizar");
define("BUTTON_BACK","Voltar");
define("BUTTON_CANCEL","Cancelar");
define("BUTTON_CLOSE","Fechar");
define("REGISTER_NEW_USER_SUCESS","Dados Gravados com sucesso !!!");
define("UPDATE_USER_SUCESS","Dados Atualizados com sucesso !!!");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","Primeira");
define("LAST_PAGE","Ãšltima");
define("PAGE","PÃ¡gina");

/*
textos para a rÃ©gua de navegaÃ§Ã£o
*/
define("HOME","home");
define("SEARCH_JOURNALS","Pesquisa periÃ³dicos");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO em nÃºmeros");
define("CITATION","CitaÃ§Ãµes");
define("CO_AUTHORS","Co-autoria");
define("USAGE","Uso do site");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","SaÃºde PÃºblica");
define("SPAIN","Espanha");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","resultados encontrados :");

/*
artigos do meu perfil
*/
define("TOOLS","Ferramentas");

/*
minhas noticias
*/
define("ADD","Adicionar");
define("ADD_FEED","Adicionar RSS Feed");
define("REMOVE_FEED","Remover RSS Feed");
define("RSS_PROBLEM","Ocorreu um erro ao tentar abrir o RSS Feed");
define("REMOVE_FEED_CONFIRM","Confirma a remoÃ§Ã£o do Feed ?");
define("PUBLISH_IN_HOME_PAGE","Publicar na Home Page");
define("REMOVE_FROM_HOME_PAGE","Remover da Home Page");
define("ALL_FEEDS","Todos os Feeds");
/*
meus links
*/
define("ADD_LINK","Adicionar Link");

/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","acesso monitorado");
define("MONITORED_CITATIONS","citaÃ§Ãµes monitoradas");
define("MOVE_TO","mover para");
define("MY_FOLDERS","Minhas Pastas");
define("ADD_FOLDER","Adicionar pasta");
define("INCOMING_FOLDER","Pasta de Entrada");
define("DATE_SORT","Data");
define("MY_RANKING","Meu ranking");
define("EDIT_FOLDER","Editar Pasta");
define("DELETE_FOLDER","Remover Pasta");
define("FOLDER_NAME","Nome da Pasta");
define("MOVE_FOLDER_TO","Mover Para");
define("BUTTON_MOVE","mover");
define("BUTTON_CANCEL","cancelar");
define("BUTTON_REMOVE","remover");
define("BUTTON_EDIT","editar");
define("BUTTON_CREATE","salvar");
define("MOVE_CONTENT_TO_OTHER_FOLDER","mover conteÃºdo para outra pasta");
define("REMOVE_CONTENT","remover conteÃºdo");
define("SHOW_BY_RATE"," por Ranking");
define("SHOW_BY_DATE"," por Data");

/*
 USER LINKS
*/

define("REMOVE_LINK","deletar link");
define("EDIT_LINK","editar link");
define("ADD_LINK","Incluir link");
define("LINK_TITLE","TÃ­tulo do Link");
define("LINK_URL","URL do Link");
define("LINK_DESCRIPTION","DescriÃ§Ã£o do Link");
define("IN_HOME","pÃ¡gina inicial");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Deseja realmente excluir este link?");
define("ENVIAR_ARTIGO_POR_EMAIL","Enviar artigo por e-mail");
define("SEND","enviar e-mail");
define("CLOSE","fechar janela");
define("ARTICLE_SUBMITED_WITH_SUCCESS","artigo enviado com sucesso");
define("SEARCHING_IN","buscando em");
define("SIMILARITY","relevÃ¢ncia");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brasil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO Espanha,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO SaÃºde PÃºblica,SCI_SCIELOSS|SciELO CiÃªncias Sociais");

define("FULL_TEXT","texto completo");
}


if ($lang=="en")
{

define("RANKING_MOST_VISITED_JOURNALS","Ranking of most visited journals");
define("VISITED_ARTICLES_BY_MONTH","Number of articles visited by month");
define("OFIGRAPH21_SENTENCE1","Articles visited in al journals, grouping by month.");
define("OFIGRAPH21_SENTENCE2","All visited articles of the following journals");
define("OFIGRAPH21_LIBRARY_COLLECTION","Library Collection");
define("OFIGRAPH21_SELECT_JOURNAL","Select some Journals");
define("OFIGRAPH21_SEE_THE_DATA","see the data");


/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","FAPESP Projects");

/*
rÃ³tulo tela CLINICAL TRIALS
*/
define("CLINICALTRIALS","Clinical Trials");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Health Indicators");

/*
rÃ³tulos tela Article References
*/

define("ARTICLE_REFERENCES","Article References");
define("ARTICLE_TRANSLATION","Automatic translation using Windows Live Translator and Google Translator service");
define("ARTICLE_TRANSLATION_WARNING","This is an automatic translation that represents a best effort but it was not reviewed by the author and might have imperfections.");
define('NO_DATA_FOR_GRAPHIC','Graphic unavailable, data in processing.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","To Email:");
define("TO_NAME","To:");
define("COMMENTS","Comments:");
define("ARTICLE_TITLE","Title: ");
define("ARTICLE_SUGGESTION","SciELO: Recommended article from ");

/*
rÃ³tulos para a tela envio de nova senha
*/
define("FORGOT_TITLE","New password send");
define("BUTTON_SEND_NEW_PASSORD","Send new password");
define("UNKNOW_USER_ERROR","User not found");
define("SEND_NEW_PASSWORD_SUCCESS","New password sent successfully !!!");

/*
rÃ³tulos para a tela de login
*/
define("HELLO_STRING","Hello, ");
define("EDIT_USER_DATA","Edit user data");
define("LOGIN_TITLE","User Login");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Logout");
define("FORGOT_PASSWORD","Send me a new password");
define("REGISTER","Register");
define("FOR_SERVICES","for personalized services");
define("LOGIN_ERROR","User/Login invalid");
define("LOGOUT_DONE","Logout was made successfully !!!");
define("NOT_LOGED","User not logged, please, visit <a target=\"_blank\" href=\"".$url."\">Scielo</a> and log in");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","New user registration");
define("UPDATE_USER_TITLE","Update user data");
define("FIELD_FIRST_NAME","First Name");
define("FIELD_LAST_NAME","Last Name");
define("FIELD_GENDER","Gender");
define("FIELD_GENDER_MALE","Male");
define("FIELD_GENDER_FEMALE","Female");
define("FIELD_PASSWORD","Password");
define("FIELD_PASSWORD_CONFIRMATION","Confirmation");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(fill it in only to change the password)");
define("FIELD_EMAIL","E-Mail");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","Afilliation");
define("FIELD_DEGREE","Select|Select,Ensino_Fundamental|Basic Education,Ensino_Medio|High School,Ensino_Tecnico|Technical Studies,Graduacao|Graduate Study,Especializacao|Specialization,Mestrado_Profissionalizante|Professional Master's Degree,Mestrado|Master's Degree,Doutorado|Doctorate,MBA|MBA,Pos_Doutorado|Post Doctorate,PHD|PhD");
define("FIELD_LOGIN_ALREADY_EXISTS","Login already exists !!!");
define("REQUIRED_FIELD_TEXT"," * Mandatory fields");
define("STEP","Step");
define("OF","of");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Article added to collection successfully !!!");
define("REMOVE_FROM_SHELF_OK","Article removed from collection successfully !!!");
define("REMOVE_CITED_ALERT_OK","Citation alert removed successfully !!!");
define("REMOVE_ACCESS_ALERT_OK","Access alert removed successfully !!!");
define("ALERT_CITED_OK","Acknowledgment when article will be cited registered successfully !!!");
define("ALERT_ACCESSED_OK","Registration to receive statistics of access was made successfully !!!");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Personal data");
define("PROFILE","Profile");
define("PROFILES","Profiles");
define("VIEW_BY","View list by");
define("MY_SHELF","My Collection");
define("MY_LINKS","My Links");
define("MY_NEWS","My News");
define("MY_ARTICLE_PROFILE","Articles of my profiles");
define("MY_NEW_ARTICLE_PROFILE","New articles of my profiles");
define("ORDER_BY","Sorted by");
define("RELEVANCE","Relevance");
define("DATE","Date");
define("MY_ALERTS","My Alerts");
define("REMOVE_FROM_SHELF","Remove from collection");
define("CITATIONS","Citations");
define("ACCESS_STATS","Access Stats");
define("ARTICLE_ACCESS","Article Access");
define("ACCESSES","Access");
define("MONTHS","Months");
define("REMOVE_ALERT","Remove alert");
define("REMOVE_ACCESS_ALERT","I do not want to receive any further alerts of accesses of  this article");
define("REMOVE_CITED_ALTER","I do not want to receive any further alerts of citations to  this article");
define("MONTH_LIST", "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sept,Oct,Nov,Dec");
define("CITED_BY","Cited By");
define("SIMILARYS_IN","Similars in");
define("COMMENTS_ARTICLE","Comments");
define("COMMENTS_ADD","(Add Comments)");
define("COMMENTS_USER_AUTHOR","*Name: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Send");
define("COMMNETS_USER_COMMENT","*Comments:");
define("COMMNETS_MESSAGE_BLOG_INI","Please ");
define("COMMNETS_MESSAGE_BLOG_FIM"," if you want to submit a comment.");
define("COMMNETS_DONT_BLOG","This journal can't receive comments");
define("COMMNETS_MESSAGE_ERRO_1","Sorry, you can only post a new comment once every 15 seconds. Slow down.");
define("COMMNETS_MESSAGE_ERRO_2","You've said that before. No need to repeat yourself.");
define("COMMNETS_MESSAGE_INFO_1","Comment sent by: "); 
define("COMMNETS_MESSAGE_INFO_2",", waiting approve.");
define("CHAR_LIMIT","Limit of 1024 characters | remaining: ");

define("SEE","See");
define("SEE_HISTORY","See History");
define("CHOOSE_PERIOD", "Choose by Year:");
define("START_YEAR", "From:");
define("LAST_YEAR", "To:");
define("BUTTON_REFRESH", "Change graphic");
define("GRAFIC_STATS_FALSE", "Do not exists statistic data for the selected period");

define("ENGLISH_GERMAN","English->German");
define("ENGLISH_ARABIC","English->Arabic");
define("ENGLISH_CHINESE_S","English->Chinese simplified");
define("ENGLISH_CHINESE_T","English->Chinese traditional");
define("ENGLISH_KOREAN","English->Korean");
define("ENGLISH_SPANISH","English->Spanish");
define("ENGLISH_FRENCH","English->French");
define("ENGLISH_DUTCH","English->Dutch");
define("ENGLISH_ITALIAN","English->Italian");
define("ENGLISH_JAPANESE","English->Japanese");
define("ENGLISH_PORTUGUESE","English->Portuguese");
define("FRENCH_GERMAN","French->German");
define("FRENCH_ENGLISH","French->English");
define("SPANISH_ENGLISH","Spanish->English");
define("PORTUGUESE_ENGLISH","Portuguese->English");

/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Profile 1");
define("FIELD_PROFILE_TWO","Profile 2");
define("FIELD_PROFILE_TREE","Profile 3");
define("FIELD_PROFILE_NAME","Name");
define("FIELD_PROFILE_DESCRIPTION_TEXT","Description");
define("BUTTON_NEW_USER","Record");
define("BUTTON_UPDATE_USER","Update");
define("BUTTON_BACK","Back");
define("BUTTON_CANCEL","Cancel");
define("BUTTON_CLOSE","Close");
define("REGISTER_NEW_USER_SUCESS","New user registration done successfully !!!");
define("UPDATE_USER_SUCESS","Update user data successfully !!!");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","First");
define("LAST_PAGE","Last");
define("PAGE","Page");

/*
textos para a rÃ©gua de navegaÃ§Ã£o
*/
define("HOME","home");
define("SEARCH_JOURNALS","Search by journals");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO in numbers");
define("CITATION","Citations");
define("CO_AUTHORS","Co-authors");
define("USAGE","Site usage");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","Public Health");
define("SPAIN","Spain");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","results :");

/*
artigos do meu perfil
*/
define("TOOLS","Tools");

/*
minhas noticias
*/
define("ADD","Add");
define("ADD_FEED","Add RSS Feed");
define("REMOVE_FEED","Remove RSS Feed");
define("RSS_PROBLEM","An error has occurred when trying open the RSS Feed");
define("REMOVE_FEED_CONFIRM","Are you sure ?");
define("PUBLISH_IN_HOME_PAGE","Publish in Home Page");
define("REMOVE_FROM_HOME_PAGE","Remove from Home Page");
define("ALL_FEEDS","All Feeds");


/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","monitored access");
define("MONITORED_CITATIONS","monitored citations");
define("MOVE_TO","move to");
define("MY_FOLDERS","My Folders");
define("ADD_FOLDER","Add folder");
define("INCOMING_FOLDER","Incoming Folder");
define("SHOW_FOLDERLIST_BY","show list by:");
define("DATE_SORT","Date");
define("MY_RANKING","My ranking");
define("EDIT_FOLDER","Edit Folder");
define("DELETE_FOLDER","Remove Folder");
define("FOLDER_NAME","Folder Name");
define("MOVE_FOLDER_TO","Move to");
define("BUTTON_MOVE","move");
define("BUTTON_CANCEL","cancel");
define("BUTTON_REMOVE","remove");
define("BUTTON_EDIT","edit");
define("BUTTON_CREATE","create");
define("MOVE_CONTENT_TO_OTHER_FOLDER","move content to another folder");
define("REMOVE_CONTENT","remove content");
define("SHOW_BY_RATE"," by Ranking");
define("SHOW_BY_DATE"," by Date");

/*
 USER LINKS
*/

define("REMOVE_LINK","delete link");
define("EDIT_LINK","edit link");
define("ADD_LINK","add link");
define("LINK_TITLE","Link Title");
define("LINK_URL","Link URL");
define("LINK_DESCRIPTION","Link Description");
define("IN_HOME","show in home");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Do you realy want to remove it?");
define("ENVIAR_ARTIGO_POR_EMAIL","Send article by mail");
define("SEND","send mail");
define("CLOSE","close window");
define("ARTICLE_SUBMITED_WITH_SUCCESS","article submited with success");
define("SEARCHING_IN","searching in");
define("SIMILARITY","similarity");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brazil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO Spain,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO Public Health,SCI_SCIELOSS|SciELO Social Sciences");

define("FULL_TEXT","full text");
}

if ($lang=="es")
{

define("RANKING_MOST_VISITED_JOURNALS","Ranking de los periÃ³dicos mas accesados");
define("VISITED_ARTICLES_BY_MONTH","El numero de articulos visitados por mes");
define("OFIGRAPH21_SENTENCE1","los articulos visitados de todas las revistas, agrupado por mes.");
define("OFIGRAPH21_SENTENCE2","Todos los articulos visitados, de lso siguientes titulos");
define("OFIGRAPH21_LIBRARY_COLLECTION","ColecciÃ³n de la Biblioteca");
define("OFIGRAPH21_SELECT_JOURNAL","Elija algunos periÃ³dicos");
define("OFIGRAPH21_SEE_THE_DATA","vea los datos");

/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","Proyectos FAPESP");

/*
rÃ³tulo tela CLINICAL TRIALS
*/
define("CLINICALTRIALS","Ensayos ClÃ­nicos");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Indicadores de Salud");

/*
rÃ³tulos tela Article References
*/

define("ARTICLE_REFERENCES","Referencias del artÃ­culo");
define("ARTICLE_TRANSLATION","TraducciÃ³n automÃ¡tica utilizando el servicio Windows Live Translator y Google Translator ");
define("ARTICLE_TRANSLATION_WARNING","Ese servicio es una traducciÃ³n automÃ¡tica que no fue revisada por el autor y puede tener imperfecciones.");
define('NO_DATA_FOR_GRAPHIC','GrÃ¡fico no disponible, datos en procesamiento.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","Correo ElectrÃ³nico del Destinatario:");
define("TO_NAME","Destinatario:");
define("COMMENTS","ComentÃ¡rios:");
define("ARTICLE_TITLE","TÃ­tulo: ");
define("ARTICLE_SUGGESTION","SciELO: ArtÃ­culo recomendado de ");

/*
rÃ³tulos para a tela envio de nova senha
*/
define("HELLO_STRING","Hola, ");
define("FORGOT_TITLE","Nueva clave de acceso");
define("BUTTON_SEND_NEW_PASSORD","EnvÃ­o de nueva clave de acceso");
define("UNKNOW_USER_ERROR","Usuario no encontrado");
define("SEND_NEW_PASSWORD_SUCCESS","Clave de acceso enviada con Ã©xito");

/*
rÃ³tulos para a tela de login
*/
define("LOGIN_TITLE","Login de usuario");
define("EDIT_USER_DATA","Actualizar los datos personales");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Salir");
define("FORGOT_PASSWORD","EnvÃ­eme una nueva clave de acceso");
define("REGISTER","RegÃ­strese");
define("FOR_SERVICES","para servicios personalizados");
define("LOGIN_ERROR","Usuario/Clave invÃ¡lidos");
define("LOGOUT_DONE","Logout realizado con Ã©xito!!!");
define("NOT_LOGED","Usuario no logado, por favor, visitar <a target=\"_blank\" href=\"".$url."\">Scielo</a> y entrar");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","Registro de nuevo usuario");
define("UPDATE_USER_TITLE","ActualizaciÃ³n de sus datos");
define("FIELD_FIRST_NAME","Nombre");
define("FIELD_LAST_NAME","Apellido");
define("FIELD_GENDER","GÃ©nero");
define("FIELD_GENDER_MALE","Masculino");
define("FIELD_GENDER_FEMALE","Femenino");
define("FIELD_PASSWORD","Clave de acceso");
define("FIELD_PASSWORD_CONFIRMATION","ConfirmaciÃ³n");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(Llene apenas si desea cambiar su clave de acceso)");
define("FIELD_EMAIL","Correo ElectrÃ³nico");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","InstituiciÃ³n");
define("FIELD_DEGREE","Select|Selecione,Ensino_Fundamental|EnseÃ±anza o EducaciÃ³n BÃ¡sica,Ensino_Medio|EnseÃ±anza o EducaciÃ³n Media,Ensino_Tecnico|EnseÃ±anza o EducaciÃ³n TÃ©cnico-Profesional,Graduacao|Superior Universitario de Grado,Especializacao|EspecializaciÃ³n,Mestrado_Profissionalizante|MaestrÃ­a Profisionalizante,Mestrado|MaestrÃ­a,Doutorado|Doctorado,MBA|MBA,Pos_Doutorado|Pos Doctorado,PHD|PhD");
define("FIELD_LOGIN_ALREADY_EXISTS","Login ya existe !!!");
define("REQUIRED_FIELD_TEXT"," * Campos obligatorios");
define("STEP","Passo");
define("OF","de");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Artigo adicionado a la colecciÃ³n");
define("REMOVE_FROM_SHELF_OK","Artigo retirado de la colecciÃ³n");
define("REMOVE_CITED_ALERT_OK","Alerta de citaciÃ³n retirado");
define("REMOVE_ACCESS_ALERT_OK","Alerta de acesso retirado");
define("ALERT_CITED_OK","Alerta de cuando el artÃ­culo es citado fue registrado con Ã©xito");
define("ALERT_ACCESSED_OK","Registro para recibimiento de estadÃ­sticas de acceso del artÃ­culo realizado con Ã©xito");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Datos personales");
define("PROFILE","Perfil");
define("PROFILES","Perfiles");
define("VIEW_BY","Ver la Lista por");
define("MY_SHELF","Mi ColecciÃ³n");
define("MY_LINKS","Mis Enlaces");
define("MY_NEWS","Mis NotÃ­cias");
define("MY_ARTICLE_PROFILE","ArtÃ­culos de mi perfil");
define("MY_NEW_ARTICLE_PROFILE","ArtÃ­culos nuevos de mi perfil");
define("ORDER_BY","Ordenado por");
define("RELEVANCE","Relevancia");
define("DATE","Fecha");
define("MY_ALERTS","Mis Alertas");
define("REMOVE_FROM_SHELF","Retirar de mi colecciÃ³n");
define("CITATIONS","Citaciones");
define("ACCESS_STATS","EstadÃ­sticas de accesos");
define("ARTICLE_ACCESS","Accesos al artÃ­culo");
define("ACCESSES","Accesos");
define("MONTHS","Meses");
define("REMOVE_ALERT","Retirar alerta");
define("REMOVE_ACCESS_ALERT","No quiero mÃ¡s recibir alertas de accessos de este artÃ­culo");
define("REMOVE_CITED_ALTER","No quiero mÃ¡s recibir alertas de citaciones a este artÃ­culo");
define("MONTH_LIST", "ene,feb,mar,abr,mayo,jun,jul,ago,sept,oct,nov,dic");
define("CITED_BY","Citado Por");
define("SIMILARYS_IN","Similares en");
define("COMMENTS_ARTICLE","Comentarios");
define("COMMENTS_ADD","(AÃ±adir Comentarios)");
define("COMMENTS_USER_AUTHOR","*Nombre: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Enviar");
define("COMMNETS_USER_COMMENT","*Comentario:");
define("COMMNETS_MESSAGE_BLOG_INI","Por favor, haga el ");
define("COMMNETS_MESSAGE_BLOG_FIM"," para enviar un comentario a ese artÃ­culo.");
define("COMMNETS_DONT_BLOG","Disculpa, ese artÃ­culo no podrÃ¡ ser comentado.");
define("COMMNETS_MESSAGE_ERRO_1","Disculpa, mas usted solamente podrÃ¡ enviar un nuevo comentario una vez a cada 15 segundos.");
define("COMMNETS_MESSAGE_INFO_1","Comentario enviado por: ");
define("COMMNETS_MESSAGE_INFO_2",", aguarde aprobaciÃ³n.");
define("CHAR_LIMIT","limite de 1024 caracteres | restantes : ");

define("SEE","Ver");
define("SEE_HISTORY","Ver HistÃ³rico");
define("CHOOSE_PERIOD", "Elegir por aÃ±o:");
define("START_YEAR", "De:");
define("LAST_YEAR", "Hasta:");
define("BUTTON_REFRESH", "Actualizar grÃ¡fico");
define("GRAFIC_STATS_FALSE", "No hay datos estadÃ­sticos para el periodo elegido");

define("ENGLISH_GERMAN","InglÃ©s->AlemÃ¡n");
define("ENGLISH_ARABIC","InglÃ©s->Ãrabe");
define("ENGLISH_CHINESE_S","InglÃ©s->Chino simplificado");
define("ENGLISH_CHINESE_T","InglÃ©s->Chino tradicional");
define("ENGLISH_KOREAN","InglÃ©s->Coreano");
define("ENGLISH_SPANISH","InglÃ©s->EspaÃ±ol");
define("ENGLISH_FRENCH","InglÃ©s->FrancÃ©s");
define("ENGLISH_DUTCH","InglÃ©s->NeerlandÃ©s");
define("ENGLISH_ITALIAN","InglÃ©s->Italiano");
define("ENGLISH_JAPANESE","InglÃ©s->JaponÃ©s");
define("ENGLISH_PORTUGUESE","InglÃ©s->PortuguÃ©s");
define("FRENCH_GERMAN","FrancÃ©s->AlemÃ¡n");
define("FRENCH_ENGLISH","FrancÃ©s->InglÃ©s");
define("SPANISH_ENGLISH","EspaÃ±ol->InglÃ©s");
define("PORTUGUESE_ENGLISH","PortuguÃ©s->InglÃ©s");

/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Perfil 1");
define("FIELD_PROFILE_TWO","Perfil 2");
define("FIELD_PROFILE_TREE","Perfil 3");
define("FIELD_PROFILE_NAME","TÃ­tulo");
define("FIELD_PROFILE_DESCRIPTION_TEXT","DescripciÃ³n");
define("BUTTON_NEW_USER","Record");
define("BUTTON_UPDATE_USER","Update");
define("BUTTON_BACK","Volver");
define("BUTTON_CANCEL","Cancelar");
define("BUTTON_CLOSE","Cerrar");
define("REGISTER_NEW_USER_SUCESS","Nuevo usuario registrado con Ã©xito");
define("UPDATE_USER_SUCESS","ActualizaciÃ³n de datos hecha con Ã©xito");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","Primera ");
define("LAST_PAGE","Ãšltima");
define("PAGE","PÃ¡gina");

define("HOME","home");
define("SEARCH_JOURNALS","BÃºsqueda por PeriÃ³dicos");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO en nÃºmeros");
define("CITATION","Citas de revistas");
define("CO_AUTHORS","Co-autoria");
define("USAGE","Uso del sitio");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","Salud PÃºblica");
define("SPAIN","EspaÃ±a");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","resultados encontrados :");

/*
artigos do meu perfil
*/
define("TOOLS","Herramientas");

/*
minhas noticias
*/
define("ADD","AÃ±adir RSS Feed");
define("ADD_FEED","AÃ±adir RSS Feed");
define("REMOVE_FEED","Remover RSS Feed");
define("RSS_PROBLEM","Se ocurrriÃ³ un error al abrir el RSS Feed");
define("REMOVE_FEED_CONFIRM","Esta seguro?");
define("PUBLISH_IN_HOME_PAGE","Publicar en la Home");
define("REMOVE_FROM_HOME_PAGE","Remover de la Home");
define("ALL_FEEDS","Todos los Feeds");

/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","acceso monitorado");
define("MONITORED_CITATIONS","citaciones monitoradas");
define("MOVE_TO","mover para");
define("MY_FOLDERS","Mis Carpetas");
define("ADD_FOLDER","aÃ±adir carpeta");
define("INCOMING_FOLDER","Carpeta de Entrada");
define("SHOW_FOLDERLIST_BY","mirar lista por:");
define("DATE_SORT","Fecha");
define("MY_RANKING","Mi clasificaciÃ³n");
define("EDIT_FOLDER","Editar Carpeta");
define("DELETE_FOLDER","Apagar Carpeta");
define("FOLDER_NAME","Nombre de la Carpeta");
define("MOVE_FOLDER_TO","Mover Para");
define("BUTTON_MOVE","mover");
define("BUTTON_CANCEL","cancelar");
define("BUTTON_REMOVE","apagar");
define("BUTTON_EDIT","editar");
define("BUTTON_CREATE","crear");
define("MOVE_CONTENT_TO_OTHER_FOLDER","mover contenÃ­do para otra carpeta");
define("REMOVE_CONTENT","apagar contenÃ­do");
define("SHOW_BY_RATE"," por Ranking");
define("SHOW_BY_DATE"," por Fecha");

/*
 USER LINKS
*/

define("REMOVE_LINK","remover direcciÃ³n eletrÃ³nica");
define("EDIT_LINK","editar direcciÃ³n eletrÃ³nica");
define("ADD_LINK","aÃ±adir direcciÃ³n eletrÃ³nica");
define("LINK_TITLE","TÃ­tulo de la direcciÃ³n eletrÃ³nica");
define("LINK_URL","URL de la direcciÃ³n eletrÃ³nica");
define("LINK_DESCRIPTION","DescripciÃ³n de la direcciÃ³n eletrÃ³nica");
define("IN_HOME","aÃ±adir a primera pÃ¡gina");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Desea realmente apagar la direcciÃ³n eletrÃ³nica?");
define("ENVIAR_ARTIGO_POR_EMAIL","Enviar artÃ­culo por e-mail");
define("SEND","enviar e-mail");
define("CLOSE","cerrar ventana");
define("ARTICLE_SUBMITED_WITH_SUCCESS","artÃ­culo enviado com Ã©xito");
define("SEARCHING_IN","procurando em");
define("SIMILARITY","relevÃ¡ncia");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brasil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO EspaÃ±a,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO Salud PÃºblica,SCI_SCIELOSS|SciELO CiÃªncias Sociales");

define("FULL_TEXT","texto completo");
}
?>
<?xml version="1.0" encoding="ISO-8859-1"?><article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<front>
<journal-meta>
<journal-id>0104-026X</journal-id>
<journal-title><![CDATA[Estudos Feministas]]></journal-title>
<abbrev-journal-title><![CDATA[Estud. fem.]]></abbrev-journal-title>
<issn>0104-026X</issn>
<publisher>
<publisher-name><![CDATA[Centro de Filosofia e Ciências Humanas e Centro de Comunicação e Expressão da Universidade Federal de Santa Catarina]]></publisher-name>
</publisher>
</journal-meta>
<article-meta>
<article-id>S0104-026X2010000100001</article-id>
<title-group>
<article-title xml:lang="en"><![CDATA[Halfway between the private and public sectors: a debate on the role of women in social welfare policy]]></article-title>
</title-group>
<contrib-group>
<contrib contrib-type="author">
<name>
<surname><![CDATA[Mariano]]></surname>
<given-names><![CDATA[Silvana Aparecida]]></given-names>
</name>
</contrib>
<contrib contrib-type="author">
<name>
<surname><![CDATA[Carloto]]></surname>
<given-names><![CDATA[Cássia Maria]]></given-names>
</name>
</contrib>
</contrib-group>
<aff id="A">
<institution><![CDATA[,  ]]></institution>
<addr-line><![CDATA[ ]]></addr-line>
</aff>
<pub-date pub-type="pub">
<day>00</day>
<month>00</month>
<year>2010</year>
</pub-date>
<pub-date pub-type="epub">
<day>00</day>
<month>00</month>
<year>2010</year>
</pub-date>
<volume>5</volume>
<numero>se</numero>
<fpage>0</fpage>
<lpage>0</lpage>
<copyright-statement/>
<copyright-year/>
<self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_arttext&amp;pid=S0104-026X2010000100001&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_abstract&amp;pid=S0104-026X2010000100001&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_pdf&amp;pid=S0104-026X2010000100001&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><abstract abstract-type="short" xml:lang="en"><p><![CDATA[This work intends to puts forth some reflections on the relationship between the public and private sectors in the context of the operationalzation of social welfare policy, with the focus on the family and the assigned to women. There has long been criticism of the instrumental role of families ad women within the design of socail protection policies, especially those of income transfer programs in the arena of public assistance. Based on our research in this arena, our research tends to have at its core the family as the locus of social policy; especially policies to combat poverty in the arena of social welfare, women and mediation between social welfare policy in the context of the Unifed Social Welfare System (Sistema Único de Assistência Social).]]></p></abstract>
<abstract abstract-type="short" xml:lang="pt"><p><![CDATA[Este trabalho se propõe a fazer algumas reflexões sobre a relação entre o público e o privado no contexto da operacionalização da política de assistência social, tendo por foco a família e o papel atribuído às mulheres. Há muito se vem criticando o papel instrumental das famílias e das mulheres dentro destas, no desenho das políticas de proteção social, com destaque para os programas de transferência de renda no âmbito da assistência. Com base em pesquisas por nós desenvolvidas nesse âmbito, nossas reflexões são desenvolvidas tendo por eixos a família como locus da política social, com destaque para as políticas de combate à pobreza no âmbito da assistência social; as mulheres; e a mediação entre família e a política de assistência social no contexto do Sistema Único de Assistência Social.]]></p></abstract>
<kwd-group>
<kwd lng="en"><![CDATA[public and private]]></kwd>
<kwd lng="en"><![CDATA[women]]></kwd>
<kwd lng="en"><![CDATA[family and social policy]]></kwd>
<kwd lng="en"><![CDATA[public assistance policy]]></kwd>
<kwd lng="pt"><![CDATA[público e privado]]></kwd>
<kwd lng="pt"><![CDATA[mulher]]></kwd>
<kwd lng="pt"><![CDATA[família e política social]]></kwd>
<kwd lng="pt"><![CDATA[política de assistência social]]></kwd>
</kwd-group>
</article-meta>
</front><body><![CDATA[  <font size="2" face="Verdana, Geneva, sans-serif">     <p><font size="4" face="Verdana, Geneva, sans-serif"><b>Halfway between   the private and public sectors: a debate on the role of women in social welfare   policy</b></font></p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p><b>Silvana Aparecida Mariano<sup>I</sup>;</b> <b>C&aacute;ssia Maria Carloto<sup>II</sup></b></p>     <p><sup>I</sup>Educator/Professor,   Departament of Social Sciences, State Universty of Londrina    <br>   <sup>II</sup>Educator/Professor,   Department of Social Work, State University of Londrina</p>     <p>Translated by Nina Adelman    <br>   Translation from <a href="http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0104-026X2010000200009&lng=pt&nrm=iso" target="_blank"><b>Revista     Estudos Feministas</b>, Florian&oacute;polis, v.18, n.2, p. 451-471, May/Aug. 2010</a>.</p>     <p>&nbsp;</p>     ]]></body>
<body><![CDATA[<p>&nbsp;</p> <hr size="1" noshade>     <p><b>ABSTRACT</b></p>     <p>This work   intends to puts forth some reflections on the relationship between the public   and private sectors in the context of the operationalzation of social welfare   policy, with the focus on the family and the assigned to women. There has long   been criticism of the instrumental role of families ad women within the design   of socail protection policies, especially those of income transfer programs in   the arena of public assistance. Based on our research in this arena, our   research tends to have at its core  the family as the locus of social policy;   especially policies to combat poverty in the arena of social welfare, women and   mediation between social welfare policy in the context of the Unifed Social   Welfare System (Sistema &Uacute;nico de Assist&ecirc;ncia Social).</p>     <p><b>Keywords</b>: public and private; women, family and social policy; public   assistance policy.</p> <hr size="1" noshade>     <p><b>RESUMO</b></p>     <p>Este trabalho se prop&otilde;e a fazer algumas reflex&otilde;es   sobre a rela&ccedil;&atilde;o entre o p&uacute;blico e o privado no contexto da operacionaliza&ccedil;&atilde;o da   pol&iacute;tica de assist&ecirc;ncia social, tendo por foco a fam&iacute;lia e o papel atribu&iacute;do &agrave;s   mulheres. H&aacute; muito se vem criticando o papel instrumental das fam&iacute;lias e das   mulheres dentro destas, no desenho das pol&iacute;ticas de prote&ccedil;&atilde;o social, com   destaque para os programas de transfer&ecirc;ncia de renda no &acirc;mbito da assist&ecirc;ncia.   Com base em pesquisas por n&oacute;s desenvolvidas nesse &acirc;mbito, nossas reflex&otilde;es s&atilde;o desenvolvidas tendo   por eixos a fam&iacute;lia como locus da pol&iacute;tica social, com destaque para as   pol&iacute;ticas de combate &agrave; pobreza no &acirc;mbito da assist&ecirc;ncia social; as mulheres; e   a media&ccedil;&atilde;o entre fam&iacute;lia e a pol&iacute;tica de assist&ecirc;ncia social no contexto do   Sistema &Uacute;nico de Assist&ecirc;ncia Social.</p>     <p><b>Palavras-chave:</b> p&uacute;blico e privado; mulher,   fam&iacute;lia e pol&iacute;tica social; pol&iacute;tica de assist&ecirc;ncia social.</p>   <hr size="1" noshade>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p><font size="3" face="Verdana, Geneva, sans-serif"><b>The family as locus of   social welfare policy</b></font></p>     ]]></body>
<body><![CDATA[<p>The National Social Welfare Policy states in its   guidelines that the focus of its activities and programs is the family. Our   goal in this work is understanding how the introduction of women occurs in a   policy aimed at families. At the core of our concerns are the effects of that   policy on the citizenship of women, The first step in such an inquiry is the   denaturalization of the family. </p>     <p>The naturalization of the institution "family" and the   difficulty in understanding it as a social construction should be, according to   Chiara Saraceno, based on the fact that the family is in physical, relational   and symbolic space at once, "on the verge of being used as a metaphor for all   situations having to do with spontaneity, naturally, with recognition without   the need for mediation - we are a family - a family language - a family   member".<a href="#_ftn1" name="_ftnref1"><sup>1</sup></a> For the author, the family turns out to be one of the privileged   places of the social construction of reality, beginning with the social   construction of events and apparently natural relationships. </p>     <p>Saraceno believes   that the family is the privileged material with which to build the social   archetypes and myths that are not always positive. The images of   family-shelter, the family as a place of intimacy and affection, a space of   authenticity, solidarity and archetype of privacy, exist alongside images   "of the family as a place of inauthenticity, of oppression, obligation,   exclusive selfishness, the family as a generator of monsters, violence, the   family that kills.".<a href="#_ftn2" name="_ftnref2"><sup>2</sup></a></p>     <p>These images   reinforced by naturalization are found not only in everyday personal   relationships, but also the principles and practices that guide the formulation   of legislation, social policies, "which speak of reclaiming family values,   encouraging family solidarity, or conversely of a family which expels its   members who are sick or in need".<a href="#_ftn3" name="_ftnref3"><sup>3</sup></a> The strength of this   naturalization leads not only to an understanding that ignores its historicity,   but also considers the family as a fully framed reality, internally homogeneous   and as such in any appreciable social and historical context, that is,   "the family" as reiterated by Saraceno.</p>     <p>The family, as Lena   Lavinas states, has become the paradigm of the private, the space of domestic   life, interpersonal relationships, the place of the feminine and of subjectivity.   With that, the family began to have an important ideological role, if not an essential   one, conveying the values of bourgeois morality, socializing children,   promoting the care of the elderly and the sick.</p>     <p> As Eli Zaretsky indicates,<a href="#_ftn4" name="_ftnref4"><sup>4</sup></a>, while the family was a unit   of production based on private property, its members considered that their home   life and personal relations were rooted in mutual work. The proletarianization   separated most of the people or families from the possession of productive   property, thus making prevalent the idea of family as a separate domain of the   public sphere and the world of work. This perspective of the family confined to   the private sphere reigns jointly with naturalization.</p>     <p>The dissociation   between the spheres of production and reproduction as dichotomous pairs   overlapping the opposition between public and private sectors is a key feature   of liberal thought.<a href="#_ftn5" name="_ftnref5"><sup>5</sup></a> On the one hand, it has   the family as a paradigm of the private, the space of domestic life, of interpersonal   relationships, and the place of the female and of subjectivity. On the other   hand, it has the domain of the public, of impersonal - and thus civil and   universal  - interests, the place of politics and business, exclusive arena of   men. While the private sphere implies a relationship of dependency, the public   sphere is marked by egalitarian assumptions that characterize the relationship   of citizens independent of each other.</p>     <p>The classic   separation between the public and private sphere that goes back to the period   of ancient Greek cities, as discussed by Hannah Arendt in The Human Condition,<a href="#_ftn6" name="_ftnref6"><sup>6</sup></a> was directed by one   basic criterion guided by the existence and attention to need. Thus, the   private sphere, associated with the domestic space, fulfilled the task of meeting   the needs of its members, while the public sphere, understood primarily as a   political space, was reserved for individuals free of the constraints imposed   by such needs. Thus we can then say that "necessity" was the category   that distinguished one sphere from the other and which conveyed the present   status of equality in the public sphere and subordination present in the   private sphere. With the development of industrial society, the world of work,   understood as productive and gainful activity, also comes to be the public   sphere.</p>     <p>There are   countless feminist studies that link the perverse effects of strict separation of   public and private,<a href="#_ftn7" name="_ftnref7"><sup>7</sup></a> this separation that is   associated with several other dichotomies, such as, for example, male and   female, political and domestic, production and reproduction, culture and   nature, independence and dependence, always so as to reinforce each other and   establish a hierarchy between the opposite poles which results in the association   of women as the inferior pole of the relationship.<a href="#_ftn8" name="_ftnref8"><sup>8</sup></a>  For this dichotomous   and binary tradition, woman is to the private and domestic what man is to the public   and political world. </p>     <p>The contemporary   critical thought has shown that the traditional way of distinguishing between   private and public is part of a discourse of domination, legitimizing the   oppression of women in the private sector. In this regard, Elizabeth Jelin   highlights how, within a society, at a given time, what is defined as private   can become public at another moment. The contemporary family, to Jelin,<a href="#_ftn9" name="_ftnref9"><sup>9</sup></a>  occupies a   contradictory place between the public world and the world of privacy and   intimacy: </p> </font>     ]]></body>
<body><![CDATA[<blockquote>       <p><font size="2" face="Verdana, Geneva, sans-serif">On the one hand, it is     subject to the "policing" of social institutions, especially those     dealing with the "development of a population and with strengthening the     nation." The invasion of social agencies, professionals and <i>experts</i> that indicate and promote "appropriate" and "good" practices     (of nutrition,  child, interpersonal relations, body care, hygiene and     childcare, etc.) do not stop increasing, eroding the areas of competence of the     very family - competency previously centered on the patriarchy and on traditions     handed down from grandmothers to mothers and daughters [...] On the other hand,     and in a seemingly contradictory manner, the family also presents itself as a     stronghold of intimacy and privacy. But what are the limits of this intimacy? How     can you redefine the distinctions between private and public function to     protect the desired  privacy and intimacy?</font></p> </blockquote> <font size="2" face="Verdana, Geneva, sans-serif">     <p>We may note that   this contradictory place between the public and the private worlds takes on   specific contours according to the social group to which we refer. In this   case, poor families, especially those which are beneficiaries of social welfare   programs, particularly experience the contradiction between the limits of   intervention of the public authorities and the stronghold of intimacy and   privacy. We venture to assert that this stronghold is remarkably narrow when we refer to the reality of poor families.</p>     <p>What is   understood by "good family" is an arrangement that takes good care of   its members, maintaining good emotional bonds, as well as its providing for   them. This assumption, combined with the concept of class, constitutes much of   the conceptual basis of social policies, including programs and social welfare services.   The logic created in this way  has as its  understanding that poor families   need guidance, information and education for such care. Thus, to achieve this   condition of good caregiver, the family would be prepared for autonomy, for the   exercise of citizenship and emancipation. These concepts and categories -   autonomy, citizenship and empowerment - are increasingly trivialized and   treated wrongly, as if they were axiomatic and transparent categories. This is   how we find them in the documents that outline the guidelines of the social welfare   policy and the daily practice of professionals. If it is true that the family   is considered one of the pillars of Brazilian social protection, it is also   correct to state that this principle is presented fully based on social welfare,   the object of our research.</p>     <p>State   intervention in the family dates back to the emergence of the modern State,   which engendered a public sphere subtracted from the direct control of kin and lineages,   constituting a precondition for the emergence of the modern family as a private   and affective space.<a href="#_ftn10" name="_ftnref10"><sup>10</sup></a>  Over the past   centuries, the State has become a source of control and norms relating to the   family as an institution, as well as family relations. Thus, social protection   policies implemented by the State, notably in the twentieth century, based   primarily in the governmental sphere, have the family as one of the principle   mediations between public action and its individuals. To this end of mediation,   the family is considered with reference to the sexual division of labor, with a   strict separation between the productive sphere and so-called reproductive   sphere, as well as between the tasks and responsibilities of men and women.<a href="#_ftn11" name="_ftnref11"><sup>11</sup></a></p>     <p>However, the relationship   between family and State is also contradictory. As a result, we can say that   the desired state control is not always accompanied by public protection for families.   Thus, in recent decades, in Brazil and many other countries, programs that   focus on "development", which have as their axis the fight against   poverty adopt as their main strategy the so-called privatization of the family   or the privatization of family survival, suggesting explicitly the transfer of responsibilities   that should be borne by the State, to the family unit, based on a proposal for   a plurality of well-being.<a href="#_ftn12" name="_ftnref12"><sup>12</sup></a></p>     <p>There is in these   programs a validation of the family as a privileged locus for overcoming the   legacy of social issues facing a state that has scarcely prioritized spending   on social security and has scarcely implemented, in terms of social policy,   strategies for overcoming social inequalities.</p>     <p>Potyara A.   Pereira-Pereira,<a href="#_ftn13" name="_ftnref13"><sup>13</sup></a>, when examining family   protection from the perspective of welfare pluralism, points out several   conceptual and political difficulties that this approach, with its   "pragmatism, refuses to see." The first refers to the contradictory   nature of the family, whose core is not an "island of virtues and   consensus", but permeated with tensions and contradictions and, like any   social institution, should be "considered as a unit simultaneously both   strong and weak" . The second refers to the difficulty of defining the informal   sector which the family is a part of in relation to other sectors - the official,   commercial and voluntary: </p> </font>     <blockquote>       <p><font size="2" face="Verdana, Geneva, sans-serif">For under social policy, public     provision is often generically contrasted with private provision. By dividing private     provision into three sectors, it is difficult to establish boundaries between     these private sources of supply. The market may perform philanthropic activity,     as has been performing in the midst of their marketing strategies, just as voluntary     non-profit organizations may conduct commercial activities, as they currently practice,     demanding financial compensation for their beneficiaries.<a href="#_ftn14" name="_ftnref14"><sup>14</sup></a></font></p> </blockquote> <font size="2" face="Verdana, Geneva, sans-serif">     ]]></body>
<body><![CDATA[<p>Pereira Pereira   draws attention as well to the fact that "it is difficult to perceive the   informal sector as a locus of pure and simple private welfare, as if it were   not an object of legal regulation and public policies".<a href="#_ftn15" name="_ftnref15"><sup>15</sup></a> The author notes that,   in this respect, "feminists have criticized the tendency to restrict   family relations or personnel to the private sphere and forcefully reminded us that   such relationships are not separated from broader socioeconomic structures." </p>     <p>If, in historical   terms, the family as a social institution is responsible for protecting, with private   individuals, the emergence of the social question, demands for accountability of   the state in relation to social protection, even partially, changes the framework   of the position of the family. With this, the family begins to occupy a dual   position, both private and public, and is directly implicated in the different   systems of social protection.</p>     <p>What is   predominant in enabling us to consider the social protection systems, with   special emphasis on the situation of women, is the way mediations are built   between the family and the labor market. Different models of well-being   represent various options to perform the mediation. The Brazilian case is   devoid of such a state of well-being, "the family institution has always   been an integral part of social protection arrangements".<a href="#_ftn16" name="_ftnref16"><sup>16</sup></a></p>     <p>Jelin's<a href="#_ftn17" name="_ftnref17"><sup>17</sup></a> analysis is that the   entire social edifice - at both the micro division of labor within the family   as in social politics - is based on the existence and functioning of the domestic   and family organization, and that given the contemporary diagnosis that   expresses the crisis of the family, voices are raised calling for public   intervention to save it from the crisis. Jelin draws attention to the fact that   phrases like "strengthen the family" can have on the one hand, a   charge of "policing" and on the other hand, there is only an implicit   model of family to be strengthened, which is the model based on monogamous heterosexual   couples and their children, with its traditional operating logic.</p>     <p>As Jacques Donzelot<a href="#_ftn18" name="_ftnref18"><sup>18</sup></a> asserts in   his book <i>A policia das fam&iacute;lias</i>, we must "take care of   poor families," meeting in some way their subjective / objective needs, so   as not to destabilize the capitalist order. This care implies not only the   transfer of material resources, but transmission of a cultural field, involving   habits, values and behaviors necessary for a "good family", that is, one   which can care for and "frame" their children so that they do not   become unmanageable adults and destabilize the order, primarily through   behaviors considered "violent," "delinquent,"   "criminal" and so on. </p>     <p>Although diverse   in its composition, to be considered a good family, it should be able to secure   financially, establish positive emotional bonds free of domestic violence;   maintain children's school attendance, take care of their hygiene, food and   clothing, and interact with blood relatives, such as, for example, grandparents   and uncles. It is important to remember that often the grandparents - and   especially grand<i>mothers</i> - have taken responsibility for the care and   custody of children, providing a home, however small, but clean and   "tidy", "with things in place."</p>     <p>Much is said   about the transformations in the world of intimacy and recent changes in the   diversification of family arrangements. However, as the past exerts its weight   over the present, we still live with the tradition that governs family   organization, structuring it based on the sexual division of labor and the   supposed complementarity of roles. Thus, our studies indicate that the   responsibilities of men and women differ within families, according to the   current pattern of gender relations.</p>     <p>We can find   objections, confident in the fact that this tradition does not faithfully   represent the organization of Brazilian families in the way we find a plurality   of empirical cases. However, since the tradition exerts its weight on the   "ideal" constructed around the family, although not a universal   standard, it is not difficult to find family arrangements that seek an   approximation to the ideal of family. This ideal also influences the design and   implementation of state policies in general and social policies in particular.   Thus, the woman's relationship with the family is socially conceived as an   almost natural one. "The woman is the pillar of the family," some   women participating in social welfare projects told us. Such lines express the   incorporation of a traditional pattern of family organization and social   relations of gender that, anyway, is present both in the conceptions of women   users of social welfare as in the professional practices undertaken in the   execution of programs and service projects.</p>     <p>Despite the   fertility of the criticisms already elaborated, there remains in our midst an   understanding that the family is the locus of action of the woman and the labor   market, the locus of action of the man - even knowing full well that men and   women are present in both spaces - and this conception is incorporated into   state interventions. Moreover, the family policies called for are   preferentially directed at the women. It is the woman, imbued with the female   role traditionally attributed to her, who incorporates these policies into the   family. </p>     <p>It is no   coincidence that the major focus of policies to combat poverty is on the care   of children, since one of the principle constraints on access, for example, to income   transfer programs relates to maintaining their attendance in school. As Ana Maria Medeiros da Fonseca<a href="#_ftn19" name="_ftnref19"><sup>19</sup></a> notes,   the anti-poverty programs presuppose an investment in the children in order to   break the cycle of poverty. In this approach, the center is the family and the   strategy is the manipulation of the role of wife / mother through her responsibilities   in the private sphere, for the good performance of these programs in the   neoliberal context, that is, in the context of containment or reduction of   social expenditures. </p>     ]]></body>
<body><![CDATA[<p>This approach in   which the woman embodies the family group before state policies directed at the   family is repeated in all Brazilian social policies, which can be identified in   health, education and social welfare. In this paper our emphasis is on social   assistance policy as it is our field of empirical research.</p>     <p>&nbsp;</p>     <p><font size="3" face="Verdana, Geneva, sans-serif"><b>Women and mediation between the family   and social welfare policy</b></font></p>     <p>Based on analysis   of official documents and qualitative research conducted in cooperation with   the Reference Centers of Reference of Social Welfare (CRAS) in Londrina,   Parana, we can visualize the way in which the woman takes the place of   "family" in social welfare policy, incorporating the role of   mediation between the family arrangement (private sphere) and public policy   (public sphere). It is noteworthy from the start that the woman is the main   actor / actress in social welfare policy, whether in management and   implementation, whether as a beneficiary. This starting point is already   standard product of gender relations that guide, in a more or less rigid   fashion, the conduct of individuals and the state action. The association family-woman   is incorporated as much into the beneficiaries of the policies as in the   institutions responsible for the policies. This association is so   "natural" that it must be named in the documents of the Ministry of Social Development and Hunger Combat (MDS).</p>     <p>Reviewing the   documents produced and published by MDS, we can observe that the organ   considers its practice as focusing on family, understanding it in its various   arrangements. The incorporation of the diversity of family arrangements in the   definition of family does not imply, however, the elimination of the idyllic   features. Thus, it states that "family is the basic nucleus of affectivity,   acceptance, coexistence, autonomy, sustainability and reference in the   development and recognition of the citizen.".<a href="#_ftn20" name="_ftnref20"><sup>20</sup></a> This is an idealized and   naturalized conception of the family, since it represents only one of its   facets, that of harmony, and hides the others, conceals its opposite, where   there is conflict and even violence, as discussed earlier .</p>     <p>With this   conception of the family, informed by an approach of cooperation and harmony,   the MDS has developed the "methodological guidelines of work with families   and individuals," aimed at the operational guidelines of the Unified System   of Social Welfare (SUAS) and the Centers of Reference of Social Welfare (CRAS).   In this document we can highlight some points, such as the orientation to   "accomplish work with groups of families or their representatives.".<a href="#_ftn21" name="_ftnref21"><sup>21</sup></a> This is the strategy of   adopting "dialogic and participatory methodologies" which takes place   with the group work. In practice, those who participate in the groups are   almost always women. Although the paper used the category "gender" in   a few moments, it operates with a strict gender blindness when it comes to   service procedures. The same is true when speaking of "family   interview." It is assumed that the family group is present, when it is   usually the woman who provides information about the conditions of family   members. Once again the subject<a href="#_ftn22" name="_ftnref22"><sup>22</sup></a> is diluted into the notion of family.</p>     <p> The programs and services of social welfare produce an   invisibility of women, conceal their roles and responsibilities while at the   same time make use of their traditional roles. Here is its ambiguity. However,   this practice cannot be named in the discourse, for it reveals the fragility,   if not contradiction, to assert that the focus is family. To be sure, the focus   is women. If the documents so stated, they would reveals its ideological   character. Thus, in the name of consistency, it remains unsaid. According to Marilena   Chau&iacute;,<a href="#_ftn23" name="_ftnref23"><sup>23</sup></a> silence is a way of   operating this ideology. Thus, the "subject" of these programs in its   discursive form is abstract and disembodied, contradicting the reality that   proves to us that the 'subject' is gendered: women.</p>     <p>What is silenced   in the guiding documents cannot be concealed or denied in practice. In this   sense there is a clear distance, a detachment among the documents establishing   the guidelines and operational policy. These do not say that the woman is the   preferred representative of the family, but in practice the strategies are   directed towards the participation of the woman / wife / mother.<a href="#_ftn24" name="_ftnref24"><sup>24</sup></a></p>     <p>On the other   hand, the MDS postulates that "gender equality should be a guiding theme,   to reverse unfair and onerous situations for women within the family context".<a href="#_ftn25" name="_ftnref25"><sup>25</sup></a>  We nevertheless   consider that for the fulfillment of this goal, it is essential to make visible   the power structures that operate within families and are eventually reproduced   in state actions. We understand that it is absolutely impossible to change   situations which rest on invisibility, which are hidden by the very practice of   state policy. Once again we are on the turf of ambiguity when dealing with the   discourse of MDS.</p>     <p>According to the   observations we make regarding the CRAS, we may affirm that women are the   principal claimants of welfare benefits, including income transfer programs,   and are primarily responsible for the fulfillment of conditions whether   directly participating in the scheduled activities or making sure that other   family members also meet the requirements, such as school attendance and health   care. This means that when the "need" for family consumption are not   satisfied with the income from work (male and female), it is the woman who must   locate government resources. Why is this mode of meeting the needs of the   family generally the prerogative of women in impoverished families?</p>     ]]></body>
<body><![CDATA[<p>Cynthia Sarti   draws attention to the importance of considering poor families not only from a   perspective of "productivist", which restricts the family to a unit   of consumption, with analysis as "reproduction of labor power" and "survival   strategies", but incorporating as well the symbolic dimension which   constitute the reality of poor families. The concern of the author is   considering research that corresponds to the assumption that "poverty is   therefore a social and symbolic dimension that defines the poor'".<a href="#_ftn26" name="_ftnref26"><sup>26</sup></a> Certainly the social   and symbolic dimensions do not exclude the economic dimension, but they are not   subordinate to it. Understood in this way, "the poor are not the typical <i>homo     economicus</i> of the capitalist system nor do they form a fully autonomous culture   in the sense that they have a specificity, a diversity, and are, at the same time,   partly subject to a larger whole"".<a href="#_ftn27" name="_ftnref27"><sup>27</sup></a></p>     <p>These caveats are   useful for us to think that the role of women in the sphere of the family is   produced and reproduced in such a varied way between groups from different   social classes, as well as between race / ethnicity and religion, among others.   However, the events are associated with the existing patterns of domination, so   that women experience these sorts of varied spaces, though differently, as "the   combined effects of class exploitation and gender discrimination".<a href="#_ftn28" name="_ftnref28"><sup>28</sup></a></p>     <p>Within this   perspective, when we speak of "poor" or "poor families" it   is important that we have the insight to identify the gender divisions to   understand the role of women and men. Even allowing that the inequalities are   reproduced by a multidimensional structure that goes beyond gender relations,   it is still conceivable that we speak of a "woman question" in that   " economic and political power concentrated among men still persists in   most of the world, and women continue being largely responsible for the family   and the 'care' - of the children, of the house and, increasingly, of the family".<a href="#_ftn29" name="_ftnref29"><sup>29</sup></a></p>     <p>This role of   "caretaker" falls most heavily on poor women, deprived of the   services offered by the market, jettisoning many of the technologies and   facilities provided by recipients of public services often of dubious quality.   From another angle, it is also the role of caregiver that is most often invoked   by the policy of social welfare to address poor women. We can even assert that,   under these circumstances, social class combines with the structure of social   relations of gender and these two phenomena take shape in the design of an   extremely precarious social protection.</p>     <p>There is clearly   a marker of gender in the design of programs and access to social policies,   which influences the conduct of men and women in order to guide who seeks which   goods and services. This refers to how a pattern of cultural value is   institutionalized in social welfare policy, such as, for example, always calling   the women to the meetings. We found in the various groups gathered for our   research, different explanations by the women for their presence and the men's   absence.</p> </font>     <blockquote>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>I think the woman [...] in general     they are at home to solve [...] may men do not want to know or to help his wife,     for example, he can come to the meeting. Sometimes the wife isn't well or [...]     to help because many of them here work , sometimes they couldn't be here     because they work (Group 6).</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>She has a husband who leaves     everything to the wife, everything is done by the woman and the man doesn't get     involved with anything [in the house] (Group 7).</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>Men do not go to the CRAS     because they do not like to sit and wait. The woman doesn't like it, but she's     used to it because it's also like that at the clinic (Group 9).</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>Sometimes they     are embarrassed. Ashamed to be in the middle of the chicks, ashamed to     participate in a social assistance program. - Yeah, I think they are ashamed. -     I think the man feels humiliated, some might feel, will say, "oh, there he     goes after things" [...] (Group 1).</i></font></p> </blockquote> <font size="2" face="Verdana, Geneva, sans-serif">     ]]></body>
<body><![CDATA[<p>Along the same   lines of those conversations, one group dialogues at greater length about the   supposed virtues of the women and the irresponsibility of men in the care of   children and the house. This point deserves a little more of our attention so   that we may problematize the way in which women mediate between the family and   social welfare policy. Thus,   we see the dialog:</p> </font>     <blockquote>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- Tem homem que &eacute; t&atilde;o sem vergonha que se pegar o     dinheiro vai parar de trabalhar. </i>(Grupo 5)</font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i> I think it's great [the     transfer of the benefit to the woman], lots of husbands don't want to give     money to the wife and the children ask the mother for things [...] mother     mother I want this, mother I am want to eat such and such, give me money [...]     and the person doesn't have anything to give. Then [the benefit] is in the name     of the mother and she has the hope of having money at the time the child asks,     then the mother goes out [...] and [buys] because when she gets her Family     Grant , she pays. That's how it is.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- Yeah, they only come to the     mother, they don't go to the father.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- It's that they ask the     daddy and the daddy, oh, go eat rice and beans and that's it.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- They already know how the     mother is and they know if they ask they'll get it [...].</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- The man, not all men, take     the money to buy cigarettes, to drink, [...] for cock fights,  and the woman,     no, a woman knows what goes on inside a home, what you need, especially with     the children.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- The majority.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- I met a man that received     the Bolsa Familia and he didn't give it to his wife and he took the money and     spent it. It was pinga, it was alcohol, every month.</i></font></p>       ]]></body>
<body><![CDATA[<p><font size="2" face="Verdana, Geneva, sans-serif"><i>- Women are more secure, she     doesn't give money left and right and the man, not any more.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- A woman is more on top of     what happens inside the home. She knows when it's lacking rice, beans, sugar,     shoes for the child, slippers. The woman knows what is lacking. The man     doesn't. The man's on the job, arrives in the evening, has dinner, goes to     sleep. He doesn't even want to know.</i></font></p>       <p><font size="2" face="Verdana, Geneva, sans-serif"><i>- The man is so shameless     that if he gets the money he'll stop working. (Group 5)</i></font></p> </blockquote> <font size="2" face="Verdana, Geneva, sans-serif">     <p>Of the many   aspects to which we could give our attention in these dialogues, what interests   us in this moment is to capture the way in which an idealized conception of   sex-role divisions oversees the conduct of the people and is introduced into a   social policy. This view expresses, explicitly or implicitly, the validity of a   model of family, with complementary and hierarchical roles which, in turn,   represent the legacy of a philosophy about the distinction between public and private.</p>     <p>The symbolic   universe constructed in social interactions within poor families explains the organization   of tasks and responsibilities from a "complementary division of authority   between men and women in the family, which corresponds to the differentiation   made between home and family."<a href="#_ftn30" name="_ftnref30"><sup>30</sup></a></p>     <p>As Cynthia Sarti   argues, "the house is identified with the woman and the family with the   man. Home and Family, as a woman and man, are a complementary pair, but   hierarchical".<a href="#_ftn31" name="_ftnref31"><sup>31</sup></a></p>     <p>When this   cultural pattern is institutionalized in social welfare policy, there is a   translation. As the woman is associated with the sphere of reproduction and the   man, the sphere of production, and as social assistance is linked to   reproduction, it operates, then, a certain change in this arrangement. Given   the policy, the family is identified by the figure of the woman, and not by man. </p>     <p>The reports of   the users explain how the social roles of women, sponsor and caretaker,   responsible for "reproductive" work, still fall upon them. They also   reveal the differences in recognition of men's and women's time, suggesting   that women have more time to waste waiting o be attended for public services,   which often involves long hours of waiting. Finally, part of the quotation,   composed of the words of several women, reveals the gender differences   regarding self-esteem and shame. The feelings of shame and humiliation affect   men and women differently in relation to the pursuit of social welfare   assistance precisely because of the paradoxes of female citizenship. </p>     <p>The role of the woman   as mediator between the private and the public spheres, as happens in the   context of social welfare policies, denotes the fragility of that family group.   This role is assumed by the woman when the man failed to fulfill his   responsibilities, as he failed with respect to the "provider ethic."   As stated by Sarti, supported by Alba Zaluar, "the work ethic, for [poor]urban   workers, no moral value comes from the activity itself, but from the role of   family provider that has the worker, thus, as an 'ethical provider'".<a href="#_ftn32" name="_ftnref32"><sup>32</sup></a></p>     <p>Thus in light of   this, the weight of failure is heavier on the man than the woman, which   explains the massive presence of women in social programs and projects,   considering that there is a symbolic association established between assistance   and failure. If the failure weighs less heavily on women, since their main role   is that of <i>good housewife</i>, and not of provider, taking on the failure   and turning to an assistance program is comparatively a less difficult act than   it would be for the man.</p>     ]]></body>
<body><![CDATA[<p>In the   complementary division of roles and authority between men and women, it falls   to the woman to maintain the unity of this group and control the household   budget, a task which is not related to earning capacity, but the role of   housewife.<a href="#_ftn33" name="_ftnref33"><sup>33</sup></a> It is these attributes   that favor the election of women as responsible for the funds transferred by   income transfer programs, an example of which occurs with the Bolsa Fam&iacute;lia   Program (BFP). Making use of these responsibilities socially assigned to women,   these programs aim to enhance their chances of gaining efficiency.   Pragmatically, without losing sight of the ideological factors of gender   domination, these programs reinforce the symbolic dimension of the value that   the woman is the manager of the home. Taking as synonyms "centrality in the   family" and "family in matrix ", the social assistance policy reveals   in the subtext reveals the idea that its focus, for that matter, is the "maternal   role".<a href="#_ftn34" name="_ftnref34"><sup>34</sup></a></p>     <p>In considering the   economic and moral aspects of the role of provider, we say that it falls to the   man, in that model of complementarity, to mediate the family with the outside   world, and that when he "fails" in the performance of this role, it   is the woman who assumes the mediation. Two caveats should be made about this.   First, this occurrence does not characterize a crisis situation, it is   preferable to treat it in terms of the dynamics of family groups. Second, this   change does not authorize us to speak of a process that eventually contributes   to greater empowerment for women, since their inclusion in the policy of social   assistance is not given based on citizenship rights, but on the basis of her   role as wife and / or mother, work that is not a commodity. The first effect is   the expected reinforcement of traditional gender roles. In this there is an   important complication if we consider that the "work" of women aimed   at social programs has the characteristic of not being a commodity, and,   according to Francisco de Oliveira, "the worst thing in the world of the   commodity is when you are not a commodity".<a href="#_ftn35" name="_ftnref35"><sup>35</sup></a></p>     <p>In incorporating   the tradition of the care provided by women uncritically, social welfare   organizes socio-educational groups which meet monthly, attended almost   exclusively by women. It is assumed that these groups have the character of   spreading and multiplying information, and women will transmit to their family   and community information and knowledge provided by the social worker. Again,   we can infer that there is, implicitly, a family model in which the woman is   the support and mainstay of the family, the potentiator of ties and initiatives   to improve living conditions, this woman who has a family who is willing to listen   to it, eager to share her new knowledge, with an ease of relating to partner   and children; that is, in this idealized model of the conjugal nuclear family   without generational and gender conflicts, in which members have common   interests or otherwise, the woman will be able to articulate these interests   and promote family harmony, "autonomy" and "emancipation." </p>     <p>From what we can   learn in field research, the idealization present in social welfare policy regarding   women's domestic duties of care and affection is consistent with the values carried   by users of the policy. We can synthetically characterize the perceptions of   users as follows:</p>     <p>a) regarding the   responsibilities of women: in general terms, women see very  naturally the   responsibilities assigned to them, think that these responsibilities are   excessive, but do not voice criticism or a desire to change; they believe that   men would not take into account the tasks they fulfill or would not do them with responsibility and appropriate quality;</p>     <p>b) regarding the   allocation of benefits to women: they believe that the resources of income   transfer programs should be given to the women, because men have less   responsibility in money management. No one admits that her husband / partner   fits this pattern, but some believe that the other husbands are thus   irresponsible;</p>     <p>c) regarding   coercion to participate in group activities:<a href="#_ftn36" name="_ftnref36"><sup>36</sup></a> as the   women demonstrated acceptance of this; they admit that the requirement to   attend the meetings represents a big responsibility, but do not complain about   it because they understand that they really  should offer a "hand"; </p>     <p>d) regarding the   objectives of socio-educational group meetings, according to the perceptions of   women, the goal is to keep themselves informed about new programs, notably the   PBF; we consider this a very mild goal very shy, which shows that the results regarding   social changes desired by management are very far from fulfillment; and</p>     <p>e) regarding   changes in their lives with the PBF: changes in relation to consumption   (purchase of school supplies, uniforms, clothes, food, etc.) are noted. Asked   about other changes, the women were silent.</p>     <p>We can verify   that the ratio of women to citizenship and the state occurs through the   association of these with maternity. While men enter the public space with the   status of individuals, citizens and workers (all of the qualities of the public   sphere), women are often included through issues of the domestic world, those   issues associated with the tasks of reproduction, which affirms their political   status as related to maternal and care functions. Social law, expressed through   the social protection system, also characterizes the ambiguous way of conceiving   women's citizenship. The mixture of public and private, and of right and favor   and right and duty and attachment of women to maternity define the contours of that   weakened and sexualized citizenship.</p>     ]]></body>
<body><![CDATA[<p>Given the   perceptions of users, we find the conditions for raising questions regarding   the role of social welfare policy in the sense of contributing to the rupture   of the confinement to the home to which extremely poor women are subjected,   since they are cast away from paid work and spaces of political participation.   The existence of such a break could be interpreted as conquering autonomy for   women.</p>     <p>The social   welfare policy gambles seriously on the possibility of autonomy. However, we   believe that the tools utilized are not even compatible with the scale of the   challenge to be faced. On the other hand, there is no use in speaking of   promoting women's autonomy when the strategies are all aimed at strengthening   the association between woman and motherhood. Besides the low value transferred   - in August 2007 the average value transferred by the PBF was R $ 74.00   (seventy four dollars) per beneficiary family - social welfare placed its   confidence in change on the socio-educational groups and in the generation of   jobs and income.</p>     <p>The   socio-educational groups have as their aim the emotional, social and political enhancement   of their participants. The jobs and income generating groups have as their   objective financial autonomy, through training for the job market or the   creation of productive inclusion groups, guided by the principles of economic solidarity, seeking the end of welfare benefits.</p>     <p>We can briefly say   that both types of groups, in the experience of Londrina, do not correspond to   the set goals. In short, what they promote is, at best, a means of   socialization for the participants and, therefore, which can change, at most,   is the level of self-esteem of the women. Regarding the political dimension seen   in the socio-educational groups, what we found was its replacement by a   psychologizing of social situation of the participants. An example of this is   that women misunderstand the actual objectives of the existence of the group.   As for the work, crochet and knitting groups, for example, constitute   experiences in occupational therapy, without the prospect that women can derive   from it gains sufficient for their livelihood.</p>     <p>By elevating the   status of women to the status of mediator between the family group and the public   world, through the social assistance policy, these programs do not go far   enough to allow, in fact, the participation of poor and extremely poor women in   treating issues that matter most in the public world: work and politics.</p>     <p>&nbsp;</p>     <p><font size="3" face="Verdana, Geneva, sans-serif"><b>Final Considerations: An   Incomplete Transition</b></font></p>     <p>The experiences of   the groups organized in Londrina by social welfare with people responsible for   the benefits of cash transfer programs indicate, in a sense, the possibility   that this policy contributes to the departure of these poor women from the private   to the public sector. This passage from one sphere to another, however, is   ambiguous because it creates a space of sociability that is guided by the needs   of the private and attributes of domestic life. Thus, the women are halfway between the private and public. It is a passage that is not complete. </p>     <p>These experiences   do not constitute possibilities for an effective integration into the public sphere.   We understand here that there are two fundamental criteria to qualify for the   public sphere: participation in the labor market (paid and visible work) and   active participation in the spaces of collective deliberation (use of voice,   persuasion, influence). From this perspective, the space of sociability is insufficient   to represent the public sphere. Equivalently, we believe that the formation of   an ample, democratic and participatory public space is a necessary and   indispensable condition for the construction of citizenship and the reduction   of social inequalities. A policy of social justice without the citizens does   not exist, that is, without a public sphere populated by women and men,   including the sectors of those living in poverty. </p>     <p>As stated   earlier, with regard to occupation and employment, social welfare, like so many   other social policies in Brazil, generating activities and responsibilities for   women which do not contribute to the conversion of their work into a commodity,   and which, on the contrary keeps them in the arena of reproductive activities,   however private. We have, herein, elaborated the way in which, in capitalist   society, the value of work occurs only when it is a commodity. </p>     ]]></body>
<body><![CDATA[<p>Political life   itself, understood as active participation in discussions and deliberations of   collective affairs, is another sore point in relations between female participants   and social welfare policy. This aspect of the public sphere remains generally   unchanged. The women interviewed do not participate in discussions and   decisions about actions that affect their lives, nor ways of implementing the   programs and services that are "targets", not subjects. </p>     <p>Under these   criteria, the social assistance policy does not achieve the result of lifting   poor women into the public sphere. If participation in the public sphere is a   prerequisite for citizenship, although it is not sufficient in and of itself,   these considerations leave some concerns about challenging the notion of   citizenship present in social policies, a vehicle for seeking interrelations   between public and private sectors, and the effects on the citizenship of   women. </p>     <p>In analysis of   the family as a factor of social protection, Goldani<a href="#_ftn37" name="_ftnref37"><sup>37</sup></a> reveals the absorption   by the family of greater responsibilities, given the fragility of state action,   in recouping the impact of economic policies and capitalist restructuring of   the labor market. It would be important, for the democratization of the family,   that family policies take into account this social institution as a target of   their actions with a view toward greater autonomy of its individuals, not in   order to benefit from its protective functions, reducing the need for public investments.</p>     <p>The models of   social protection in some European countries also supported and continue to support   a particular organization of the family, but the focus of the family has a different   nature. Goldani<a href="#_ftn38" name="_ftnref38"><sup>38</sup></a> notes   that, from the perspective of gender equity, one of the models most under   discussion is that put forth by Nancy Fraser, in 1994 - a universal model based   on the participation of men and women in paid employment and in the work of   caregivers. The principal measures called for strengthening the family have   been a priority investment in universal access to early childhood and   elementary education, both full-time, and the integration of women into the   labor market, with programs of affirmative character for families which have   women as the figure of reference.</p>     <p>We conclude with a chorus, a phrase by Jelin: "The usual call to   'strengthen' the family without the social support implies that this call is in   fact an expression of social cynicism and irresponsibility".<a href="#_ftn39" name="_ftnref39"><sup>39</sup></a></p>     <p>&nbsp;</p>     <p><font size="3" face="Verdana, Geneva, sans-serif"><b>Bibliographic   References</b></font></p>     <!-- ref --><p>AGUIAR,   Od&iacute;lio Alves. "A quest&atilde;o social em Hannah Arendt". <i>Trans/Form/A&ccedil;&atilde;o</i>, S&atilde;o Paulo, v. 27, n. 2, p. 7-20, 2004.    </p>     <p>ARENDT, Hannah. <i>The Human Condition</i>. Translated by Roberto Raposo. Rio de Janeiro: Forense, 1983.</p>     ]]></body>
<body><![CDATA[<!-- ref --><p>BONACCI, Gabriella; GROPPI,   Angela (Orgs.). <i>O dilema da cidadania: direitos e deveres das mulheres</i>. S&atilde;o Paulo: Unesp, 1995.    </p>     <!-- ref --><p>BRUSCHINI, Cristina. <i>Mulher, casa e fam&iacute;lia. </i>S&atilde;o Paulo: Revistas dos Tribunais, 1990.    </p>     <!-- ref --><p>CARLOTO, C&aacute;ssia Maria. "G&ecirc;nero,   pol&iacute;ticas p&uacute;blicas e centralidade na fam&iacute;lia". <i>Servi&ccedil;o Social e Sociedade</i>, S&atilde;o Paulo, n. 86, p. 139-155, jul. 2006.    </p>     <!-- ref --><p>CHAU&Iacute;, Marilena. <i>Convite &agrave; Filosofia</i>. S&atilde;o Paulo: &Aacute;tica, 2000.    </p>     <!-- ref --><p>DONZELOT, Jacques. <i>A pol&iacute;cia das fam&iacute;lias</i>. Rio de Janeiro: Graal, 1980.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p>FONSECA, Ana Maria Medeiros da. <i>Fam&iacute;lia e pol&iacute;tica de renda m&iacute;nima</i>. S&atilde;o Paulo: Cortez, 2001.    </p>     <!-- ref --><p>GOLDANI, Ana   Maria. "Fam&iacute;lia, g&ecirc;nero e pol&iacute;ticas: fam&iacute;lias brasileiras nos anos 90 e seus   desafios como fator de prote&ccedil;&atilde;o". <i>Revista Brasileira de Estudos de Popula&ccedil;&atilde;o</i>, S&atilde;o Paulo, v. 19, n. 1, p. 29-48, jan./jun. 2002.    </p>     <!-- ref --><p>JELIN, Elizabeth. <i>Pan e a   fectos - la transformaci&oacute;n de l&atilde;s fam&iacute;lias.</i> Buenos Aires, Argentina: Fondo de Cultura Econ&ocirc;mica, 2004.    </p>     <p>JELIN,   Elizabeth. "Las familias latinoamericanas en el marco de las transformaciones   globales. Hacia una nueva agenda de pol&iacute;ticas p&uacute;blicas". In: ARRIAGADA, Irma (Ed.). <i>Pol&iacute;ticas hacia las familias, protecci&oacute;n e inclusi&oacute;n sociales</i>. Naciones Unidas: CEPAL, 2005. p. 69-88. (Series: Seminarios y conferencias n. 46).</p>     <!-- ref --><p>KLEIN, Carin.   "A produ&ccedil;&atilde;o da maternidade no Programa Bolsa-Escola". <i>Revista Estudos Feministas</i>, Florian&oacute;polis, v. 13, n. 1, p. 31-52, jan./abr. 2005.    </p>     <!-- ref --><p>LAVINAS, Lena. "G&ecirc;nero, cidadania e pol&iacute;ticas urbanas". In: ______. <i>Globaliza&ccedil;&atilde;o, fragmenta&ccedil;&atilde;o e reforma urbana. </i>Rio de Janeiro: Civiliza&ccedil;&atilde;o Brasileira, 1997. p. 169-187.    </p>     <!-- ref --><p>MARIANO,   Silvana Aparecida. "O sujeito do feminismo e o p&oacute;s-estruturalismo". <i>Revista Estudos Feministas</i>, Florian&oacute;polis, v. 13, n. 3, p. 483-505, set./dez. 2005.    </p>     <!-- ref --><p>MINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME. Prote&ccedil;&atilde;o b&aacute;sica   do Sistema &Uacute;nico de Assist&ecirc;ncia Social. Orienta&ccedil;&otilde;es t&eacute;cnicas para o Centro de   Refer&ecirc;ncia de Assist&ecirc;ncia Social. Vers&atilde;o preliminar. Bras&iacute;lia, jun. 2006a. 75 p.    </p>     <!-- ref --><p>MINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME. Orienta&ccedil;&otilde;es para   o acompanhamento das fam&iacute;lias benefici&aacute;rias do Programa Bolsa Fam&iacute;lia no &acirc;mbito   do Sistema &Uacute;nico de Assist&ecirc;ncia Social (SUAS). Vers&atilde;o preliminar. Bras&iacute;lia, jun. 2006b. 164 p.    </p>     <p>MIOTO, Regina. Celia. T. "Novas   propostas e velhos princ&iacute;pios: a assist&ecirc;ncia &agrave;s fam&iacute;lias no contexto de   programas de orienta&ccedil;&atilde;o e apoio sociofamiliar". In: SALES, Mione Apolin&aacute;rio;   MATOS, Maur&iacute;lio Castro de; LEAL, Maria Cristina (Orgs.). <i>Pol&iacute;tica social, fam&iacute;lia e juventude: uma quest&atilde;o de direitos.</i> S&atilde;o Paulo: Cortez, 2006. p. 43-59. </p>     <p>MORAES, Maria Lygia Quartim de. "Marxismo   e feminismo: afinidades e diferen&ccedil;as". <i>Cr&iacute;tica Marxista</i>, Campinas, n. 11, p. 89-97, 2000.</p>     <p>NOVO DICION&Aacute;RIO AUR&Eacute;LIO DA L&Iacute;NGUA PORTUGUESA. 3. ed. Rio de Janeiro: Fronteira, 2004. </p>     ]]></body>
<body><![CDATA[<!-- ref --><p>OLIVEIRA, Francisco de. "O v&iacute;cio   da virtude: autoconstru&ccedil;&atilde;o e acumula&ccedil;&atilde;o capitalista no Brasil". <i>Novos estudos - CEBRAP</i>, S&atilde;o Paulo, n. 74, p. 67-85, 2006.    </p>     <!-- ref --><p>PEREIRA-PEREIRA, Potyara   Amazoneida. "Mudan&ccedil;as estruturais, pol&iacute;tica social e papel da fam&iacute;lia: cr&iacute;tica   ao pluralismo de bem-estar". In: SALES, Mione Apolin&aacute;rio; MATOS, Maur&iacute;lio   Castro de; LEAL, Maria Cristina (Orgs.). <i>Pol&iacute;tica social, fam&iacute;lia e juventude: uma quest&atilde;o de direitos</i>. S&atilde;o Paulo: Cortez, 2004. p. 25-42.    </p>     <!-- ref --><p>SARACENO, Chiara. <i>Sociologia da fam&iacute;lia</i>. Lisboa: Editorial Estampa, 1997.    </p>     <!-- ref --><p>SARTI, Cynthia Andersen. <i>A   fam&iacute;lia como espelho: um estudo sobre a moral dos pobres</i>. 3. ed. S&atilde;o Paulo: Cortez, 2005.    </p>     <!-- ref --><p>ZARETSKY, Eli. <i>O capitalismo, a fam&iacute;lia e a vida privada.</i> Lisboa: Iniciativas Editoriais, 1976.    </p>     ]]></body>
<body><![CDATA[<p>&nbsp;</p>     <p>&nbsp;</p>     <p><a href="#_ftnref1" name="_ftn1">1</a> Chiara SARACENO, 1997, p. 12.    <br> <a href="#_ftnref2" name="_ftn2">2</a> SARACENO, 1997, p. 13.    <br> <a href="#_ftnref3" name="_ftn3">3</a> SARACENO, 1997, p. 13.    <br> <a href="#_ftnref4" name="_ftn4">4</a> Eli ZARETSKY, 1976.    <br> <a href="#_ftnref5" name="_ftn5">5</a> LAVINAS, 1997.    <br> <a href="#_ftnref6" name="_ftn6">6</a> Hannah ARENDT, 1983.    <br> <a href="#_ftnref7" name="_ftn7">7</a> For an example of this discussion, see Gabriella BONACCI and Angela GROPPI, 1995.    <br> <a href="#_ftnref8" name="_ftn8">8</a> Silvana Aparecida MARIANO, 2005.    ]]></body>
<body><![CDATA[<br> <a href="#_ftnref9" name="_ftn9">9</a> Elizabeth JELIN, 2004, p. 110.    <br> <a href="#_ftnref10" name="_ftn10">10</a> SARACENO, 1997.    <br> <a href="#_ftnref11" name="_ftn11">11</a> SARACENO, 1997.    <br> <a href="#_ftnref12" name="_ftn12">12</a> C&aacute;ssia Maria CARLOTO, 2006.    <br> <a href="#_ftnref13" name="_ftn13">13</a> Potyara Amazoneida PEREIRA-PEREIRA, 2004.    <br> <a href="#_ftnref14" name="_ftn14">14</a> PEREIRA-PEREIRA, 2004, p. 37.    <br> <a href="#_ftnref15" name="_ftn15">15</a> PEREIRA-PEREIRA, 2004, p. 37.    <br> <a href="#_ftnref16" name="_ftn16">16</a> PEREIRA-PEREIRA, 2004, p. 29.    <br> <a href="#_ftnref17" name="_ftn17">17</a> JELIN, 2004.    <br> <a href="#_ftnref18" name="_ftn18">18</a> Jacques DONZELOT, 1980.    ]]></body>
<body><![CDATA[<br> <a href="#_ftnref19" name="_ftn19">19</a> Ana Maria Medeiros da FONSECA, 2001.    <br> <a href="#_ftnref20" name="_ftn20">20</a> MINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME, 2006a, p. 27.    <br> <a href="#_ftnref21" name="_ftn21">21</a> MINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME, 2006a, p. 35.    <br> <a href="#_ftnref22" name="_ftn22">22</a> We do not treat in depth the notion of   "subject" in this article, especially with regard to discussions on   the subject of right and law. It is noteworthy that the status of the   beneficiaries or users, of social welfare as "subject" or   "object" of politics is one of the issues that fuel the debate on   social policy and citizenship in Brazil. Here we use the category   "subject" without assigning any particular political status, referring   only to those who in any way take part in the development of programs and state services.    <br> <a href="#_ftnref23" name="_ftn23">23</a> Marilena CHAU&Iacute;, 2000.    <br> <a href="#_ftnref24" name="_ftn24">24</a> SeeMINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME, 2006a e 2006b.    <br> <a href="#_ftnref25" name="_ftn25">25</a> MINIST&Eacute;RIO DO DESENVOLVIMENTO SOCIAL E COMBATE &Agrave; FOME, 2006a, p. 41.    <br> <a href="#_ftnref26" name="_ftn26">26</a> Cynthia Andersen SARTI, 2005, p. 42.    <br> <a href="#_ftnref27" name="_ftn27">27</a> Cynthia Andersen SARTI, 2005, p. 42.    <br> <a href="#_ftnref28" name="_ftn28">28</a> Maria Lygia Quartim de MORAES, 2000, p. 93.    ]]></body>
<body><![CDATA[<br> <a href="#_ftnref29" name="_ftn29">29</a> MORAES, 2000, p. 97.    <br> <a href="#_ftnref30" name="_ftn30">30</a> SARTI, 2005, p. 28.    <br> <a href="#_ftnref31" name="_ftn31">31</a> SARTI, 2005, p. 28.    <br> <a href="#_ftnref32" name="_ftn32">32</a> SARTI, 2005, p. 49.    <br> <a href="#_ftnref33" name="_ftn33">33</a> SARTI, 2005.    <br> <a href="#_ftnref34" name="_ftn34">34</a> According to the Novo Dicion&aacute;rio Aur&eacute;lio (2004), <i>matri</i> is a compositional element which means mother, ‘m&atilde;e': <i>m&aacute;trio</i>, <i>matriarca. </i>    <br> <a href="#_ftnref35" name="_ftn35">35</a> Francisco de OLIVEIRA, 2006, p. 73.    <br> <a href="#_ftnref36" name="_ftn36">36</a> The Municipal Social Welfare Secretary   of Londrina organizes socio-educational support groups, s a complementary   activity to federal income transfer programs. Formally this is not a requirement, but there is strong pressure to ensure the presence of women in these groups.    <br> <a href="#_ftnref37" name="_ftn37">37</a> Ana Maria GOLDANI, 2002.    <br> <a href="#_ftnref38" name="_ftn38">38</a> GOLDANI, 2002.    ]]></body>
<body><![CDATA[<br> <a href="#_ftnref39" name="_ftn39">39</a> JELIN, 2005, p. 87.</p> </font>      ]]></body><back>
<ref-list>
<ref id="B1">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[AGUIAR]]></surname>
<given-names><![CDATA[Odílio Alves]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA["A questão social em Hannah Arendt"]]></article-title>
<source><![CDATA[Trans/Form/Ação]]></source>
<year>2004</year>
<volume>27</volume>
<numero>2</numero>
<issue>2</issue>
<page-range>7-20</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B2">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[ARENDT]]></surname>
<given-names><![CDATA[Hannah]]></given-names>
</name>
</person-group>
<source><![CDATA[A condição humana]]></source>
<year>1983</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Forense]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B3">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[BONACCI]]></surname>
<given-names><![CDATA[Gabriella]]></given-names>
</name>
<name>
<surname><![CDATA[GROPPI]]></surname>
<given-names><![CDATA[Angela]]></given-names>
</name>
</person-group>
<source><![CDATA[O dilema da cidadania: direitos e deveres das mulheres]]></source>
<year>1995</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Unesp]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B4">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[BRUSCHINI]]></surname>
<given-names><![CDATA[Cristina]]></given-names>
</name>
</person-group>
<source><![CDATA[Mulher, casa e família]]></source>
<year>1990</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Revistas dos Tribunais]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B5">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[CARLOTO]]></surname>
<given-names><![CDATA[Cássia Maria]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA["Gênero, políticas públicas e centralidade na família"]]></article-title>
<source><![CDATA[Serviço Social e Sociedade]]></source>
<year>jul.</year>
<month> 2</month>
<day>00</day>
<numero>86</numero>
<issue>86</issue>
<page-range>139-155</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B6">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[CHAUÍ]]></surname>
<given-names><![CDATA[Marilena]]></given-names>
</name>
</person-group>
<source><![CDATA[Convite à Filosofia]]></source>
<year>2000</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Ática]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B7">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[DONZELOT]]></surname>
<given-names><![CDATA[Jacques]]></given-names>
</name>
</person-group>
<source><![CDATA[A polícia das famílias]]></source>
<year>1980</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Graal]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B8">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[FONSECA]]></surname>
<given-names><![CDATA[Ana Maria Medeiros da]]></given-names>
</name>
</person-group>
<source><![CDATA[Família e política de renda mínima]]></source>
<year>2001</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Cortez]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B9">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[GOLDANI]]></surname>
<given-names><![CDATA[Ana Maria]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Família, gênero e políticas: famílias brasileiras nos anos 90 e seus desafios como fator de proteção]]></article-title>
<source><![CDATA[Revista Brasileira de Estudos de População]]></source>
<year>jan.</year>
<month>/j</month>
<day>un</day>
<volume>19</volume>
<numero>1</numero>
<issue>1</issue>
<page-range>29-48</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B10">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[JELIN]]></surname>
<given-names><![CDATA[Elizabeth]]></given-names>
</name>
</person-group>
<source><![CDATA[Pan e a fectos: la transformación de lãs famílias]]></source>
<year>2004</year>
<publisher-loc><![CDATA[Buenos Aires ]]></publisher-loc>
<publisher-name><![CDATA[Fondo de Cultura Econômica]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B11">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[JELIN]]></surname>
<given-names><![CDATA[Elizabeth]]></given-names>
</name>
</person-group>
<article-title xml:lang="es"><![CDATA[Las familias latinoamericanas en el marco de las transformaciones globales: Hacia una nueva agenda de políticas públicas]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[ARRIAGADA]]></surname>
<given-names><![CDATA[Irma]]></given-names>
</name>
</person-group>
<source><![CDATA[Políticas hacia las familias, protección e inclusión sociales]]></source>
<year>2005</year>
<page-range>69-88</page-range><publisher-name><![CDATA[Naciones Unidas: CEPAL]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B12">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[KLEIN]]></surname>
<given-names><![CDATA[Carin]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA["A produção da maternidade no Programa Bolsa-Escola"]]></article-title>
<source><![CDATA[Revista Estudos Feministas]]></source>
<year>jan.</year>
<month>/a</month>
<day>br</day>
<volume>13</volume>
<numero>1</numero>
<issue>1</issue>
<page-range>31-52</page-range><publisher-loc><![CDATA[Florianópolis ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B13">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[KLEIN]]></surname>
<given-names><![CDATA[Carin]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA["Gênero, cidadania e políticas urbanas"]]></article-title>
<person-group person-group-type="editor">
<name>
</name>
</person-group>
<source><![CDATA[Globalização, fragmentação e reforma urbana]]></source>
<year>1997</year>
<page-range>169-187</page-range><publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Civilização Brasileira]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B14">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MARIANO]]></surname>
<given-names><![CDATA[Silvana Aparecida]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA["O sujeito do feminismo e o pós-estruturalismo"]]></article-title>
<source><![CDATA[Revista Estudos Feministas]]></source>
<year>set.</year>
<month>/d</month>
<day>ez</day>
<volume>13</volume>
<numero>3</numero>
<issue>3</issue>
<page-range>483-505</page-range><publisher-loc><![CDATA[Florianópolis ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B15">
<nlm-citation citation-type="">
<collab>MINISTÉRIO DO DESENVOLVIMENTO SOCIAL E COMBATE À FOME</collab>
<source><![CDATA[Proteção básica do Sistema Único de Assistência Social: Orientações técnicas para o Centro de Referência de Assistência Social]]></source>
<year>jun.</year>
<month> 2</month>
<day>00</day>
<publisher-loc><![CDATA[Brasília ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B16">
<nlm-citation citation-type="">
<collab>MINISTÉRIO DO DESENVOLVIMENTO SOCIAL E COMBATE À FOME</collab>
<source><![CDATA[Orientações para o acompanhamento das famílias beneficiárias do Programa Bolsa Família no âmbito do Sistema Único de Assistência Social (SUAS)]]></source>
<year>jun.</year>
<month> 2</month>
<day>00</day>
<publisher-loc><![CDATA[Brasília ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B17">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MIOTO]]></surname>
<given-names><![CDATA[Regina Celia Tamaso]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Novas propostas e velhos princípios: a assistência às famílias no contexto de programas de orientação e apoio sociofamiliar]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[SALES]]></surname>
<given-names><![CDATA[Mione Apolinário]]></given-names>
</name>
<name>
<surname><![CDATA[MATOS]]></surname>
<given-names><![CDATA[Maurílio Castro de]]></given-names>
</name>
<name>
<surname><![CDATA[LEAL]]></surname>
<given-names><![CDATA[Maria Cristina]]></given-names>
</name>
</person-group>
<source><![CDATA[Política social, família e juventude: uma questão de direitos]]></source>
<year>2006</year>
<page-range>43-59</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Cortez]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B18">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MORAES]]></surname>
<given-names><![CDATA[Maria Lygia Quartim de]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Marxismo e feminismo: afinidades e diferenças]]></article-title>
<source><![CDATA[Crítica Marxista]]></source>
<year>2000</year>
<numero>11</numero>
<issue>11</issue>
<page-range>89-97</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B19">
<nlm-citation citation-type="book">
<source><![CDATA[NOVO DICIONÁRIO AURÉLIO DA LÍNGUA PORTUGUESA]]></source>
<year>2004</year>
<edition>3</edition>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Nova Fronteira]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B20">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[OLIVEIRA]]></surname>
<given-names><![CDATA[Francisco de]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[O vício da virtude: autoconstrução e acumulação capitalista no Brasil]]></article-title>
<source><![CDATA[Novos estudos - CEBRAP]]></source>
<year>2006</year>
<numero>74</numero>
<issue>74</issue>
<page-range>67-85</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
</nlm-citation>
</ref>
<ref id="B21">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[PEREIRA-PEREIRA]]></surname>
<given-names><![CDATA[Potyara Amazoneida]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Mudanças estruturais, política social e papel da família: crítica ao pluralismo de bem-estar]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[SALES]]></surname>
<given-names><![CDATA[Mione Apolinário]]></given-names>
</name>
<name>
<surname><![CDATA[MATOS]]></surname>
<given-names><![CDATA[Maurílio Castro de]]></given-names>
</name>
<name>
<surname><![CDATA[LEAL]]></surname>
<given-names><![CDATA[Maria Cristina]]></given-names>
</name>
</person-group>
<source><![CDATA[Política social, família e juventude: uma questão de direitos]]></source>
<year>2004</year>
<page-range>25-42</page-range><publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Cortez]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B22">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[PEREIRA-PEREIRA]]></surname>
<given-names><![CDATA[Potyara Amazoneida]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Mudanças estruturais, política social e papel da família: crítica ao pluralismo de bem-estar]]></article-title>
<person-group person-group-type="editor">
<name>
</name>
</person-group>
<source><![CDATA[Política social, família e juventude: uma questão de direitos]]></source>
<year>2006</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Cortez]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B23">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[SARACENO]]></surname>
<given-names><![CDATA[Chiara]]></given-names>
</name>
</person-group>
<source><![CDATA[Sociologia da família]]></source>
<year>1997</year>
<publisher-loc><![CDATA[Lisboa ]]></publisher-loc>
<publisher-name><![CDATA[Editorial Estampa]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B24">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[SARTI]]></surname>
<given-names><![CDATA[Cynthia Andersen]]></given-names>
</name>
</person-group>
<source><![CDATA[A família como espelho: um estudo sobre a moral dos pobres]]></source>
<year>2005</year>
<edition>3</edition>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Cortez]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B25">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[ZARETSKY]]></surname>
<given-names><![CDATA[Eli]]></given-names>
</name>
</person-group>
<source><![CDATA[O capitalismo: a família e a vida privada]]></source>
<year>1976</year>
<publisher-loc><![CDATA[Lisboa ]]></publisher-loc>
<publisher-name><![CDATA[Iniciativas Editoriais]]></publisher-name>
</nlm-citation>
</ref>
</ref-list>
</back>
</article>
