I want to vertically center the "Characteristic" heading in its respective cell?

\documentclass[a4paper,12pt]{article}
\usepackage{booktabs} %for top, middle and bottomline
\usepackage{multirow} %multi column and row spanning
\usepackage{multicol}
\usepackage{graphicx}
\begin{document}
\begin{multicols}{2}
\subsection*{Results}
\resizebox{\columnwidth}{!}{%
\begin{tabular}{@{} l c c @{}}
\toprule
Characteristic & \multicolumn{2}{c}{Result}\\
\cmidrule{2-3}
& Seaweed isolate & Coral isolate \\
\midrule
Cell shape & Rod & Rod\\
Gram stain & $-$ & $-$\\
Oxidase & $+$ & $-$\\
Catalase & $+$ & $-$\\
MSA & Growth & No growth\\
Anaerobic & Growth (weak) & No growth\\
Motility & & \\
Indole production & & \\
Hugh \& Leifsons & & \\
\bottomrule
\end{tabular}
}
\end{multicols}
\end{document}
\usepackage{graphicx}is missing) plus it has many packages loaded that are not relevant to show the problem you are having. People will be much more willing to help you if they don't have to wade through loads of irrelevant (and non-working) code. – Alan Munn May 12 '11 at 20:07