That's the overall bottom margin for post containers
div.post {
margin: 0 0 30px 0;
}
Can be set at Atahualpa Theme Options -> Post / Page Styling -> POST Container
It applies to post containers on single post pages and page pages, too. If the sidebars are short on single post pages or page pages, you might want to keep the bottom margin below the post container. You could do this by adding a overall bottom padding to the middle column td#middle { padding-bottom: 30px } or by adding margin-bottom to post containers on single post pages and page pages only, through a CSS insert:
HTML Code:
body.body-page div.post,
body.body-single div.post {
margin-bottom: 30p;
}