I am trying to create a 2 x 2 table with centered headings. The row headings need to be rotated as shown below (mocked-up in another program). The cells are supposed to be 1in tall and 1.4in wide.

What I get instead is the following. The height of the parbox seems to have been added to the cell height. I have tried correcting this with \raisebox and \strut and \rule to no avail:

My code currently looks like this:
\begin{supertabular}{c | p{1.4in} | p{1.4in} |}
\multicolumn{1}{c}{} & \multicolumn{1}{c}{\centering Full} & \multicolumn{1}{c}{\centering Partial} \\
\cline{2-3}
\raisebox{-1in}[0in][0in]{\rotatebox{90}{\parbox[c]{1in}{\centering Shutdown}}} & {Pellentesque enim mi, ornare in blandit quis, dignissim ut velit. Etiam tempus tortor quam.} & {Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin a lorem sed dui aliquam feugiat eget at arcu.} \\[1in]
\cline{2-3}
\raisebox{-1in}[0in][0in]{\rotatebox{90}{\parbox[c]{1in}{\centering Active}}} & {Pellentesque convallis scelerisque libero, eu gravida metus porttitor nec. Nulla facilisi.} & {Sed auctor nibh at purus mattis porta. Nunc vitae ante lacus.} \\[1in]
\cline{2-3}
\end{supertabular}
`, they'll be marked as code, as can be seen in my edit. You can also highlight the code and click the "code" button (with "{}" on it). – Guido Nov 19 '12 at 21:23\\[1in]will add a 1 inch space between the 2 rows of your table, as you can see on your attempt – Lionel MANSUY Nov 19 '12 at 21:47