Hallo an die Gemeinde!

Habe folgndes verzwickte Problem mit meiner Tabelle: ich möchte, dass
1. der Abstand der einzelnen Tabellenzeilen größer ist
2. in den Saplten BA, BP Leu und BP Tdr die Zahlen schön anhand des +/-
Zeichens ausgerichtet werden und er Abstand dazwischen verschwindet

Kann mir jemand helfen????

MfG, ph2

Code:
\documentclass[12pt,oneside,american]{scrbook}

%%PAKETDATENBANKEN

%%Seiteneinstellungen
\usepackage[a4paper]{geometry} %%DIN A 4 Seitendarstellung mit spez. Seitenraendern
    \geometry{verbose,bmargin=4.5cm,lmargin=4cm,rmargin=3.5cm}
    \pagestyle{headings}
    \setlength{\parskip}{\medskipamount}
    \setlength{\parindent}{0pt}

%%Zeichen- und Sonderzeichendarstellung
\usepackage[cp1252]{inputenc}
\usepackage{lmodern}  %%Schriftfamilie
    \renewcommand{\familydefault}{\sfdefault}

\usepackage{latexsym} %%Symboldarstellung
\usepackage{marvosym} %%Symbole
\usepackage{textcomp} %%Symbole
\usepackage{amsmath}

%%Formel- und Tabellenumgebung
\usepackage{array} %%für saubere Tabellendarstellung
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{rotating}  %%Querformat fuer Tabellendarstellungen
\usepackage[margin=5pt,font=small,labelfont=bf]{caption} %%Textformat fuer Tab & Fig. Bechriftung
\usepackage{sidecap}   %%Tabellen- und Bildbeschriftungen
\usepackage{subfigure} %%Einfügen von Subfigures in includegraphics
\usepackage{expdlist}  %%Erweiterung der \itemize-Bedingung


\usepackage{babel}


\begin{document}

  \begin{sidewaystable}  %%Tabelle wird im Querformat dargestellt


  %%Tabellenbeschriftung
  \caption[Table 1]{\label{tab.leutab1}
       Bacterial abundance (BA), temperature (T), bulk incorporation rates for leucine (BP Leu) and
	   thymidine (BP TdR), and the relative abundance of the main bacterial groups expressed as
	   percentage of DAPI counts. EUB (\textit{Bacteria}); ALFA (\textit{Alphaproteobacteria});
	   BET (\textit{Betaproteobacteria}); RBT (R-BT subgroup of \textit{Betaproteobacteria});
	   CF (\textit{Cytophaga}-like bacteria); HGC (\textit{Actinobacteria}).
	   GKS 1 and GKS 8.5 are samples collected in September 2006 in GKS at 1 m and 8.5 m depth,
	   respectively. SOS 06 and SOS 07 are samples collected in SOS at 1 m depth in September
	   2006 and August 2007, respectively.}

    \bigskip  %%Abstand zu caption
    \small{
    \begin{tabularx}{\textwidth}{lrr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}rr@{\textpm{}}r}

      \toprule
	Sample 	&T  &\multicolumn{2}{c}{BA} &\multicolumn{2}{c}{BP Leu} &\multicolumn{2}{c}{BP TdR}
	&\multicolumn{2}{c}{EUB} &\multicolumn{2}{c}{ALFA} &\multicolumn{2}{c}{BET}  &\multicolumn{2}{c}{RBT}
	&\multicolumn{2}{c}{CF} &\multicolumn{2}{c}{HGC}\\

        &\footnotesize{(\textdegree{}C)} %
	&\multicolumn{2}{c}{\footnotesize{(10$^{\text{5}}$cells ml$^{\text{-1}}$)}} %
	&\multicolumn{2}{c}{\footnotesize{(pmol l$^{\text{-1}}$h$^{\text{-1}}$)}}   %
        &\multicolumn{2}{c}{\footnotesize{(pmol l$^{\text{-1}}$h$^{\text{-1}}$)}}   %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	&\multicolumn{2}{c}{\footnotesize{(\%)}} %
	
      \tabularnewline
      \hline

	GKS 1 	&11.2  &4.80&0.53  & 163&9.43  &4.56&0.94  &68.0&3.21  &9.72&1.64  &18.1&1.83  &12.0&1.48  &8.11&1.35  &20.0&4.56\tabularnewline
	GKS 8.5 & 8.7  &5.40&0.27  & 164&15.7  &3.59&0.78  &71.5&2.44  &3.61&0.58  &20.8&2.20  &12.7&1.02  &17.7&1.74  &19.9&3.76\tabularnewline
	SOS 06 	& 7.5  &4.80&0.59  &61.3&2.85  &2.48&0.24  &82.9&7.39  &5.13&0.59  &29.0&3.12  &23.9&3.21  &0.76&0.18  &37.7&4.22\tabularnewline
	SOS 07 	& 9.2  &6.24&0.38  &27.9&2.53  &1.73&0.26  &89.7&3.51  &4.90&0.65  &41.7&3.72  &33.2&6.65  &0.49&0.12  &23.3&3.46\tabularnewline

      \bottomrule
    \end{tabularx}
    }
  \end{sidewaystable}
  \bigskip
\end{document}