There sure is! You can globally shift all text to be right-formatted by opening up the styles.css file for your template located at:
/templates/[yourtemplate]/Styles/styles.css
and changing the body tag from reading something like:
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
height: 100%;
}
to:
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
height: 100%;
text-align:right;
}