Using [baseline] on a tikzpicture with a background layer seems to interfere with the placement of a blur shadow:

MWE (for use with pdflatex):
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shadows.blur}
\usepackage[T1]{fontenc}
\pgfdeclarelayer{background}
\pgfsetlayers{background,main}
\begin{document}
\begin{tikzpicture}[baseline]
\node[text width=0.4\textwidth,inner xsep=4mm,inner ysep=2mm] (A){TEXT};
\begin{pgfonlayer}{background}
\path[draw=black!30, blur shadow, fill=gray!10]
(A.south east) -- (A.south west) -- (A.north west) -- (A.north east) -- cycle ;%
\end{pgfonlayer}
\end{tikzpicture}
\end{document}
Deleting the [baseline] makes everything work fine, as does substituting drop shadow for blur shadow.
latexon pgf-blur.dtx (revision 169) gives – Mohan Dec 09 '12 at 20:43