I have this figure:
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{fit,arrows,calc,positioning}
\begin{document}
\tikzstyle{b} = [rectangle, draw, fill=white, node distance=1cm, text width=6em, text centered, rounded corners, minimum height=4em, thick]
\tikzstyle{l} = [draw, -latex',thick]
\begin{tikzpicture}[auto]
\node [b] (box1) {box1};
\node [b, right=of box1] (box2) {box2};
\path [l] (box1) -- (box2);
\end{tikzpicture}
\end{document}
Why is there more margin on the left compared to the right?