Hi Tom,
1. You can copy the style of the left to the right by dubplicating the css style of the right column and apply to the left column
2. Just move the following block:
<!-- BEGIN: SPOTLIGHT -->
<div id="ja-spotlight" class="ja-spotlight clearfix">
<?php if ( mosCountModules('user1') ) { ?>
<div class="ja-box" style="width: <?php echo $divwidth ?>;">
<?php mosLoadModules ( 'user1', -2 ); ?>
</div>
<?php } ?>
<?php if ( mosCountModules('user2') ) { ?>
<div class="ja-box" style="width: <?php echo $divwidth ?>;">
<?php mosLoadModules ( 'user2', -2 ); ?>
</div>
<?php } ?>
<?php if ( mosCountModules('top') ) { ?>
<div class="ja-box" style="width: <?php echo $divwidth ?>;">
<?php mosLoadModules ( 'top', -2 ); ?>
</div>
<?php } ?>
</div>
<!-- END: SPOTLIGHT -->
and put them belows these codes:
<div id="ja-mainbody<?php echo $divid ?>">
<?php mosMainBody(); ?>
<?php if ( mosCountModules('banner') ) { ?>
<div id="ja-banner">
<?php mosLoadModules ( 'banner', -1 ); ?>
</div>
<?php } ?>