?>
	                 <em>
	               <?php 
            echo ucfirst($emendamento->getNota());
            ?>
.
	               </em>
	              <?php 
        }
        ?>
        
	            <?php 
    }
    ?>
	            <?php 
    $c_signers = OppEmendamentoPeer::doSelectCoFirmatari($emendamento->getId());
    ?>
	            <?php 
    if (count($c_signers) > 0) {
        ?>
	            <span style="margin-bottom: 0px; font-size:13px; font-weight:normal">e altri <?php 
        echo count($c_signers);
        ?>
 cofirmatari ... [ <a class="btn-open action" href="#" style="display: inline;">apri</a> <a style="display: none;" class="btn-close action" href="#">chiudi</a> ]</span>
	              <div style="display: none; line-height:1.2em;font-size:13px; font-weight:normal;" class="more-results float-container">
	              <?php 
        $i = 0;
        foreach ($c_signers as $key => $cf) {
            $i++;
            $pol = OppPoliticoPeer::retrieveByPk($key);
            echo link_to($pol->getNome() . " " . $pol->getCognome(), '@parlamentare?' . $pol->getUrlParams()) . ($i < count($c_signers) ? ', ' : '.');