Hwo to put start line in the corrner of a A node? How to force TikZ to draw C-level siblings to the right direction.

\documentclass{beamer}%
\mode<presentation>%
{
\usetheme{Madrid}%
\setbeamercovered{transparent}
}
\usepackage{pgf}
\usepackage{tikz}
\usetikzlibrary{%
arrows,%
shapes.misc,%
shapes.arrows,%
positioning,% wg. " of "
scopes,%
decorations.pathmorphing,%
shadows,%
trees
}
\usepackage{amsmath}
\usepackage{tgheros}
\renewcommand*\familydefault{\sfdefault}
\title[Example]%
{\textbf{How to ?}} %
\subtitle{}%
\author[]%
{Foo Bar}%
\institute[of Beamer]%
{
%
}
\date[\today]%
{}%
\subject{Talks}%
\definecolor{niebieski}{HTML}{aac9cb}
\definecolor{szary}{HTML}{7a7a7a}
\definecolor{morski}{HTML}{6bc1c5}
\tikzstyle{kwadrat1}=[rectangle, rounded corners=2pt, thin, black,top color=niebieski!30, bottom color=niebieski, draw=szary, text= black, minimum width=2.5cm, minimum height=0.6cm, text width = 2.5cm, text badly centered, inner ysep=2pt, ]
\tikzstyle{kwadrat2}=[rectangle, rounded corners=2pt, thin, black,top color=morski!30, bottom color=morski, draw=szary, text= black, minimum width=2.5cm, minimum height=0.6cm, text width = 2.5cm, text badly centered, inner ysep=2pt, ]
\tikzstyle{kwadrat3}=[rectangle, rounded corners=2pt, thin, black,top color=morski!30, bottom color=morski, draw=szary, text= black, minimum width=2.5cm, minimum height=0.6cm, text width = 2.5cm, text badly centered, inner ysep=2pt, ]
\begin{document}
\begin{frame}
\begin{tikzpicture}[%
grow via three points={one child at (0.5,-0.7) and
two children at (0.5,-0.7) and (0.5,-1.4)},
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}]
\node [kwadrat1] {A}
child { node [kwadrat2] {B}}
child { node[kwadrat2] {B}}
child { node [kwadrat2] {B}}
child { node [kwadrat2] {B}
child { node [kwadrat3] {C}}
child { node [kwadrat3] {C}}
child { node [kwadrat3] {C}}
};
\end{tikzpicture}
\end{frame}
\end{document}
