?>
									</span>
								</div>
								<?php 
        if (displetretsidx_use_mls_number()) {
            ?>
									<td class="<?php 
            displetretsidx_the_mls_number_container_class();
            ?>
 displet-font-color-light">
										MLS&reg;#:
										<span class="<?php 
            displetretsidx_the_mls_number_class();
            ?>
 <?php 
            echo displetretsidx_is_mls_number_emphasized() ? 'displet-font-color' : 'displet-font-color-light';
            ?>
">
											<?php 
            displetretsidx_the_mls_number();
            ?>
										</span>
									</td>
								<?php 
        }
        ?>
								<?php 
        if (displetretsidx_use_disclaimer_image()) {
            ?>
									<img class="displet-mls-logo" src="<?php 
            displetretsidx_the_disclaimer_image_url();
        }
        if (displetretsidx_has_listing_office_id()) {
            $bold = displetretsidx_is_listing_office_id_emphasized() ? 'displet-emphasize displet-font-color' : '';
            $displet_pdp_other[] = '<tr class="displet-listing-office-id">
			<td class="displet-detail-title">Listing Office ID:</td>
			<td class="displet-listing-office-id-value ' . $bold . '">' . displetretsidx_get_listing_office_id() . '</td>
		</tr>';
        }
        if (displetretsidx_has_longitude_display()) {
            $displet_pdp_other[] = '<tr class="displet-longitude">
			<td class="displet-detail-title">Longitude:</td>
			<td class="displet-longitude-value">' . displetretsidx_get_longitude_display() . '</td>
		</tr>';
        }
        if (displetretsidx_has_mls_number()) {
            $bold = displetretsidx_is_mls_number_emphasized() ? 'displet-emphasize displet-font-color' : '';
            $displet_pdp_other[] = '<tr class="displet-mls-number">
			<td class="displet-detail-title">MLS&reg; #:</td>
			<td class="displet-mls-number-value ' . $bold . '">' . displetretsidx_get_mls_number() . '</td>
		</tr>';
        }
        if (displetretsidx_has_is_new_construction()) {
            $displet_pdp_other[] = '<tr class="displet-new-construction">
			<td class="displet-detail-title">New Construction:</td>
			<td class="displet-new-construction-value">' . displetretsidx_get_is_new_construction() . '</td>
		</tr>';
        }
        if (displetretsidx_has_number_of_units()) {
            $displet_pdp_other[] = '<tr class="displet-number-of-units">
			<td class="displet-detail-title">Number Of Units:</td>
			<td class="displet-number-of-units-value">' . displetretsidx_get_number_of_units() . '</td>
/**
 * @return: print: CSS classname
 */
function displetretsidx_the_mls_number_class()
{
    $class = 'displet-mls-value';
    if (displetretsidx_is_mls_number_emphasized()) {
        $class .= ' displet-emphasize';
    }
    echo $class;
}