Hi Steven
I just confirmed that the theme was causing the problem. Since your plugin template allows the customizations from the theme, its using some of the css rules applied throughout the theme.
I found the custom css to modify and changed it in the theme itself. This actually fixed the look on the connection template but it messed up the look for all of my other pages.
I chatted with my theme support and they told me there is a way to change a custom style apply only on a specific page with conditional tags: http://codex.wordpress.org/Conditional_Tags#A_PAGE_Page
This is the custom style I applied:
<style>
.entry p {
text-align: right;
line-height: 18px;
}
</style>
Can you please show me, based on the Conditional tags, how I should write it so it only affects the page where the plugin is? http://myxtremewebsite.com/tandcrealty/our-team/
Thanks