$la_config=array('showHeadings'=>0,      // Mostrar encabezados
					 'fontSize' => 9,        // Tamaño de Letras
					 'showLines'=>0,         // Mostrar Líneas
					 'shaded'=>0,            // Sombra entre líneas
					 'width'=>530,           // Ancho Máximo de la tabla
					 'rowGap'=>2,
					 'colGap'=>0,
					 'xOrientation'=>'center', // Orientación de la tabla
			 		 'cols'=>array('total'=>array('justification'=>'right','width'=>395), // Justificación y ancho de la columna
					 			   'totaldeuda'=>array('justification'=>'left','width'=>135))); // Justificación y ancho de la columna
	$io_pdf->ezTable($la_data,$la_columna,'',$la_config);

}// end function uf_print_total
//----------------------------------------------------------------------------------------------------------------------------------------------------------------//
	// Datos de la cabecera del reporte
	$lb_valido=$lo_antig_dao->getCabeceraReporteDeuda("ORDER BY ".$_GET["orden"],$_GET["codper1"],$_GET["codper2"],$_GET["codnom"],$la_array);
	if ($lb_valido==false) // Existe algún error ó no hay registros
	{
		$la_opciones["anchos_col"]   = array(250);
	    $la_opciones["alineacion_col"]= array("center");  
        $la_datos = array("<i>No existen Registros que cumplan con los Parámetros.</i>");
        $lo_pdf->add_tabla('center',$la_datos,$la_opciones);
	}
	else  // Imprimimos el reporte
	{
		error_reporting(E_ALL);
		set_time_limit(1800);
		$ld_totaldeuda = 0;
		$li_totrow=count($la_array["cedper"]);
		for($li_i=0;$li_i<$li_totrow;$li_i++)
		{