The LEFT and RIGHT are just two different syntaxes for what is logically the same operation:
A LEFT OUTER JOIN B
means the same as
B RIGHT OUTER JOIN A
So the syntax is totally redundant and more confusing than it needs to be. I see the LEFT syntax used more often than the RIGHT and as a matter of personal preferance I always use LEFT in my own queries.