<th>Nombre/Raz&oacute;n</th>
                <th>Fecha de Registro</th>
                <th>Ciudad</th>
                <!--th>Estado</th-->
                <th>Tipo de Expediente</th>
                <th>Acciones</th>
            </tr>
        </thead>

        <tbody style="text-transform: uppercase;">
        <?php 
include_once '../controller/cExpediente.php';
include_once '../controller/cUtilerias.php';
$util = new cUtilerias();
$exp = new cExpediente();
$con = $exp->listarExpedientesP($_POST['tipo'], $_POST['inicio'], $_POST['fin'], $_POST['activo']);
$nmain = $exp->getNExpeMain($_POST['tipo']);
while ($l = $con->NextRow()) {
    if ($l['idmain'] == 5) {
        //comparacion si el expediente es de obligado solidario y cambiar el color
        $tcolor = "#FFFF99";
    } else {
        //mostrams todos los expedientes que no sean obligado solidario
        $tcolor = "#BBDAFD";
    }
    if ($l['idmain'] != 5) {
        //mostrar los expedientes que no sean obligados solidarios
        ?>
				<tr>
        		<td>
        			<span class="fa fa-thumb-tack" style="color:<?php