I have the following code for a table, but I can't figure out why 2 columns are wider:
\newcolumntype{C}{>{\centering\arraybackslash}p{2em}}
\begin{table}[h]
\centering
\caption[]{\footnotesize\textbf{The initial conditions for Honeybee embryos.}}
\label{table: initial target bee}
\resizebox{0.7\textwidth}{!}{%
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}
\hline
\multirow{2}{*}{Genes} & \multicolumn{4}{c|}{Initial values in Regions} & \multicolumn{4}{c|}{Target values in Regions}\\
\cline{2-9}
& R1 & R2 & R3 & R4 & R1 & R2 & R3 & R4 \\
\hline
\emph{e}& 0.7 & 0.7 & 0.7 & 0.7 & 0 & 0 & 0 & 0 \\
\hline
\end{tabular}
}
\end{table}
Any suggestion please?



[h]!! it usually generates a warning and latex changes it to[ht]but better to use[htp]to avoid teh float going to the end of the document. – David Carlisle Jul 25 '14 at 08:20