I have a document which looks like this:

Code is like this:
\documentclass[10pt]{memoir}
\usepackage{lipsum}
\usepackage{tikz}
\usetikzlibrary{shapes,backgrounds,patterns}
\tikzstyle{box} = [align=center, text width=12.4cm, draw=blue, fill=blue, rectangle, rounded corners,
inner sep=5pt, inner ysep=5pt]
\begin{document}
\lipsum
~\\
\begin{tikzpicture}
\node[box](box){\color{white}\textbf{white text on blue background}};
\node[shape=circle,fill=white,inner sep=2mm] at (box.west) {};
\node[text=blue,right=-3pt] at (box.west) {\textbf{1}};
\end{tikzpicture}
~\\
\lipsum
\end{document}
I'd like the tikzpicture not to be indented and to be vertically aligned with the text. I tried with \noindent before \begin{tikzpicture} but it doesn't seem to work ...
Any suggestion?



