Authors: 
					</span>
					<?php 
        echo $clArray["authors"];
        ?>
				</div>
				<?php 
    }
    ?>
			<div>
				<div>
					<h1>Species List</h1>
					<div style="margin:3px;">
						<b>Families:</b> 
						<?php 
    echo $clManager->getFamilyCount();
    ?>
					</div>
					<div style="margin:3px;">
						<b>Genera:</b>
						<?php 
    echo $clManager->getGenusCount();
    ?>
					</div>
					<div style="margin:3px;">
						<b>Species:</b>
						<?php 
    echo $clManager->getSpeciesCount();
    ?>
						(species rank)
					</div>
        $textrun->addText(htmlspecialchars($abstract), 'textFont');
        $textrun->addTextBreak(1);
    }
    if ($clValue && $clArray["notes"]) {
        $notes = str_replace('&quot;', '"', preg_replace('/\\s+/', ' ', $clArray["notes"]));
        $notes = str_replace('&apos;', "'", $notes);
        $textrun->addText(htmlspecialchars('Notes: '), 'topicFont');
        $textrun->addText(htmlspecialchars($notes), 'textFont');
        $textrun->addTextBreak(1);
    }
}
$textrun = $section->addTextRun('linePara');
$textrun->addLine(array('weight' => 1, 'width' => 670, 'height' => 0));
$textrun = $section->addTextRun('defaultPara');
$textrun->addText(htmlspecialchars('Families: '), 'topicFont');
$textrun->addText(htmlspecialchars($clManager->getFamilyCount()), 'textFont');
$textrun->addTextBreak(1);
$textrun->addText(htmlspecialchars('Genera: '), 'topicFont');
$textrun->addText(htmlspecialchars($clManager->getGenusCount()), 'textFont');
$textrun->addTextBreak(1);
$textrun->addText(htmlspecialchars('Species: '), 'topicFont');
$textrun->addText(htmlspecialchars($clManager->getSpeciesCount() . ' (species rank)'), 'textFont');
$textrun->addTextBreak(1);
$textrun->addText(htmlspecialchars('Total Taxa: '), 'topicFont');
$textrun->addText(htmlspecialchars($clManager->getTaxaCount() . ' (including subsp. and var.)'), 'textFont');
$textrun->addTextBreak(1);
$prevfam = '';
if ($showImages) {
    $imageCnt = 0;
    $table = $section->addTable('imageTable');
    foreach ($taxaArray as $tid => $sppArr) {