In the following example I want to draw a simple line with tikz. It seems that the line produced a additional horizontal space left and right about .5\pgflinewidth. I tried outer xsep=0pt but with no result.
\documentclass{scrartcl}
\usepackage{tikz}
\tikzset{linestyle/.style={%
draw=red,%
line width=8ex,
}}%
\begin{document}
\centering
\fboxsep0pt
\fbox{\tikz\draw[use as bounding box,linestyle] (-1,1ex)--(4,1ex);}
\end{document}
How can I avoid the extra space?

