Edit the_content() function so to add a div wrapper

You could try something like

<?php

add_filter('the_content','wrap_content');

function wrap_content($content) {

    $content="<div id="YOURID">".$content.'</div>';

    return $content;
}
?>

Just add it into your functions.php file
Untested code