Werner provided the code below which works. My question is how to continue the left side bar text to the next page. In other words, I want the right main body text to flow between pages exactly as his code allows, but I also want the left sidebar text to flow between pages.
\documentclass{article}
\usepackage[margin=.5in]{geometry}
\usepackage{flowfram,lipsum}
\newstaticframe[1]{\textwidth}{.25\textheight}{0pt}{.75\textheight}[top]
\newstaticframe[1]{.3\textwidth}{.72\textheight}{0pt}{0pt}[left]
\setallstaticframes{valign=t}
\newflowframe[1]{.65\textwidth}{.72\textheight}{.35\textwidth}{0pt}
\newflowframe[2]{.65\textwidth}{\textheight}{.35\textwidth}{0pt}
\pagestyle{empty}
\begin{document}
\begin{staticcontents*}{top}
\lipsum[1-2]
\end{staticcontents*}
\begin{staticcontents*}{left}
\raggedright\lipsum[3-4]
\end{staticcontents*}
\lipsum[1-10]% right column the can overflow
\end{document}