[Tex/LaTex] Table is overlapping text

tables

I'm using the IEEE format latex files from here:

http://mocha-java.uccs.edu/ieee/

I have the following code:

\begin{center}

\begin{tabular}{|l|l|}

\hline

\multicolumn{2}{|c|}{UHF/VHF Antenna Specifications} \\

\hline

{\bf Model} & 2MCP22 \\
Frequency Range & 144-148 MHz \\
Gain @ 145.9 MHz & 12.25 dBdc \\
Front to back & 25 dB Typical \\
Beamwidth & 38° \\
Feed impedance & 50 Ohms Unbalanced \\
VSWR & 1.4: Max \\
Input Connector & ‘N’ Female \\
Power Handling & 1.5 KW \\
Stacking Distance & 9.5-10 ft \\
Boom length & 18’ 7” \\
Boom Diameter & 1-1/2”, Tapering to 1” \\
Elements/Type & 22 / 3/16” Aluminum Rod \\
Turning radius & 10 ft \\
Wind area & $2.5 ft^2$ \\
Weight / Ship Wt. & 12.5 lbs / 14 lbs UPS  \\
\hline
{\bf Model} & 436CP42 U/G \\
Frequency Range & 430-438 MHz \\
Gain & 16.8 dBdc \\
Beamwidth & 21° circular \\
Polarity & Circular, RHC or LHC \\
Front to Back & 25 dB Typical \\
Ellipticity & 1.5 dB Typical \\ 
VSWR & 1.5:1 and better \\
Feed impedance & 50W, Unbalanced \\
Connector & ‘N’ Female \\
Power handling & 1 kW \\
Stacking Distance & E=68” H=68” \\
Turning radius & 95° \\
Wind Area & $2 ft^2$ \\ 
Mast Size & 1-1/2 to 2 Inches \\ 
Weight / Ship Wt. & 7.8 lbs / 10 lbs UPS \\
\hline
{\bf Model} & 2.4-15R \\
Frequency Range & 2.4-2.5 GHz \\
Gain & 15 dBi \\
Front to Back & 16 dB \\
VSWR & 1.5:1 Max \\
Polarity & Vertical / Horizontal \\
Feed Impedance & 50 Ohms \\
Feed Connector & ‘N’ Female \\
Power Handling & 500 W \\
Boom Length & 25” \\
Radome Diameter & 3.3” \\
Mast Size & 1-1/4 to 2 Inches \\
Wind Area & 1 $ft^2$ \\     
Wind Rating & 100 mph \\      
Weight & 1 lb \\

\hline

\end{tabular} \\

\end{center}

For some reason the table is overlapping the text directly after it, I've posted a picture here:
https://docs.google.com/leaf?id=0BxtHMBPFxja0OTU4MTViNzItMjQ4ZS00MTgwLWE5OTktMWY3NGJkZjU1ZDQy&hl=en&authkey=CN_7j70D

I've tried wrapping it in a

\begin{table}

...table here...

\end{table}

but I get errors doing that

This is going to drive me crazy, trying \\ or \newpage or something to get it on it's own isn't helping.

EDIT: Clarified overlapping problem.

EDIT2: Here is a minimal example

\documentclass[final]{ieee}

\begin{document}

\begin{center}
\begin{tabular}{|l|l|}
  \hline
  {\bf Model} & 2.4-15R \\
  Frequency Range & 2.4-2.5 GHz \\
  Gain & 15 dBi \\
  Front to Back & 16 dB \\
  VSWR & 1.5:1 Max \\
  Polarity & Vertical / Horizontal \\
  Feed Impedance & 50 Ohms \\
  Feed Connector & ‘N’ Female \\
  Power Handling & 500 W \\
  \hline
\end{tabular} \\

\end{center}
\PARstart The GENSO network will consist of a MCC, GSS and AUS. Each satellite communicates with an individual MCC which acts as a server. All data and voice transmissions for the given satellite are downloaded by different GSS's throughout the world and routed to the correct MCC where it is retained for later dissemination. [...]

\end{document}

The other ieee class is from the site I linked initially at the top.

Best Answer

This seems to be a bug in the ieee class. Adding an empty box after the center environment solves the problem.

\documentclass[final]{ieee}

\begin{document}

\begin{center}
\begin{tabular}{|l|l|}
  \hline
  {\bf Model} & 2.4-15R \\
  Frequency Range & 2.4-2.5 GHz \\
  Gain & 15 dBi \\
  Front to Back & 16 dB \\
  VSWR & 1.5:1 Max \\
  Polarity & Vertical / Horizontal \\
  Feed Impedance & 50 Ohms \\
  Feed Connector & ‘N’ Female \\
  Power Handling & 500 W \\
  \hline
\end{tabular}
\end{center}\mbox{} %note the \mbox here

\PARstart The GENSO network will consist of a MCC, GSS and AUS. Each satellite communicates with an individual MCC which acts as a server. All data and voice transmissions for the given satellite are downloaded by different GSS's throughout the world and routed to the correct MCC where it is retained for later dissemination. [...]

\end{document}