first move the sub menu (level 2) to the left, by adding this CSS to your CSS tab:
div#access ul ul {
left: -116px;
}
then add this for the sub sub menu (level 3):
div#access ul ul ul {
right: 100%;
}
this will make it align to the rigt side.
hope that helps! konrad