To stop Wordpress from putting tags around your content, you can use the following Wordpress function call:
remove_filter('the_content', 'wpautop');
To apply this function to your template, just put the function statement in a file called "functions.php" in your main directory of your wordpress template. If the functions.php does't exist, just create it.