How can I reduce the amount of whitespace at the top of the page in the letter class? I've added some text to serve as a letterhead, and everything is lined up... but starts way too low! Does anyone have suggestions for how to get my first line of text to line up with the top?
\documentclass{letter}
\begin{document}
\thispagestyle{empty}
\signature{Nathan S. Lachenmyer}
\longindentation=0pt
\let\raggedleft\raggedright
\vfill
\begin{letter}{
Senior Staff Recruiter \\
XYZ Corporation \\
Rt. 56 \\
Anytown, New Jersey 05867}
%This is my header
\centerline{\huge \bf \sc Nathan S. Lachenmyer}
\begin{center}
\line(1,0){450}
\end{center}
%letter begins here
\opening{Dear Person:}
Letter goes here
\closing{Sincerely Yours,}
\end{letter}
\end{document}
