<?php get_header(); ?>
  <div id="content">
    <div class="post" style="padding-left:0px;">
    <br />
	<h1>Search Results</h1>
  	<br />
  <?php if (have_posts()) : ?>
			  
	<?php while (have_posts()) : the_post(); ?>
	<div class="post" id="post-<?php the_ID(); ?>">    	
    	<div class="post-header"></div>
        <div class="post-content">
          <div class="post-date"><span class="post-month"><?php the_time('M') ?></span><span class="post-day"><?php the_time('d') ?></span></div>
          <div class="post-title">
                <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                <span class="post-cat">Posted in <?php the_category(', ') ?></span>
	  		</div>			  
          <div class="entry">
		  	<?php the_excerpt(); ?>
          </div>          
	</div>
    <div class="post-bottom"></div>
    </div><!--/post -->
	<?php endwhile; ?>
	
	<div class="navigation">
	  <span class="previous-entries"><?php next_posts_link('&#171; Previous Entries') ?></span> <span class="next-entries"><?php previous_posts_link('Next Entries &#187;') ?></span>
	</div>
	
  <?php else : ?>
  	<h3>Sorry, nothing found.</h3>
    <?php endif; ?>
	</div><!--/content -->
  </div><!--/content -->
  
<?php get_sidebar(); ?>

<?php get_footer(); ?>