I'm trying to add an itemized list in a tabular environment, it does work however it adds an unwanted space above the list...
Here's the code...
\documentclass[10pt]{article}
% packages
\usepackage[T1]{fontenc}
\usepackage[margin=3cm]{geometry}
\usepackage{array, xcolor}
\usepackage{titling}
\usepackage{blindtext}
% rules
\definecolor{lightgray}{gray}{0.8}
\newcolumntype{L}{>{\raggedleft}p{0.14\textwidth}}
\newcolumntype{R}{p{0.8\textwidth}}
\newcommand\VRule{\color{lightgray}\vrule width 0.5pt}
\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
\section*{Work Experience}
\begin{tabular}{L! {\VRule} R}
2010-2011 & {\bf Profession}\\
& Job Description\\
& \begin{itemize}
\item The first item
\item The second item
\item The third etc
\end{itemize} \\
\end{tabular}
\end{document}
And the result is this...

Is there anyway to make the itemized list have less of a line break between its start and 'Job Description'?



