##
my @cells = $r->look_down(
_tag => q{td},
width => q{48%},
valign => q{top},
);
####
for my $cell (@cells){
####
my $bold = $cell->look_down(_tag => q{b});
print $bold->as_text, qq{\n};
####
for my $item ($cell->content_refs_list) {
next if ref $$item;
print $$item, qq{\n};
}
####
my $link = $cell->look_down(
_tag => q{a},
);
####
print $link->attr(q{href}), qq{\n\n};