After some fiddling, I got this to work. My changes in styles.css are…
#sidebar {
float: left;
padding: 20px 0 10px 0;
margin-left: 35px;
width: 190px;
}
… and …
.narrowcolumn {
float: right;
padding: 0 45px 20px 0;
margin: 0px 0 0;
width: 450px;
}
… and, in index.php the top 2 lines are now …
<?php get_header(); ?>
<?php get_sidebar(); ?>
Hope this helps someone else.
Rob