Index: wp-includes/general-template.php
===================================================================
--- wp-includes/general-template.php	(revision 11591)
+++ wp-includes/general-template.php	(working copy)
@@ -121,7 +121,7 @@
 		return;
 	}
 
-	$form = '<form role="search" method="get" id="searchform" action="' . get_option('home') . '/" >
+	$form = '<form method="get" id="searchform" action="' . get_option('home') . '/" >
 	<div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label>
 	<input type="text" value="' . esc_attr(apply_filters('the_search_query', get_search_query())) . '" name="s" id="s" />
 	<input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" />
Index: wp-content/themes/default/footer.php
===================================================================
--- wp-content/themes/default/footer.php	(revision 11591)
+++ wp-content/themes/default/footer.php	(working copy)
@@ -6,7 +6,7 @@
 ?>
 
 <hr />
-<div id="footer" role="contentinfo">
+<div id="footer">
 <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
 	<p>
 		<?php bloginfo('name'); ?> is proudly powered by
Index: wp-content/themes/default/search.php
===================================================================
--- wp-content/themes/default/search.php	(revision 11591)
+++ wp-content/themes/default/search.php	(working copy)
@@ -6,7 +6,7 @@
 
 get_header(); ?>
 
-	<div id="content" class="narrowcolumn" role="main">
+	<div id="content" class="narrowcolumn">
 
 	<?php if (have_posts()) : ?>
 
Index: wp-content/themes/default/index.php
===================================================================
--- wp-content/themes/default/index.php	(revision 11591)
+++ wp-content/themes/default/index.php	(working copy)
@@ -6,7 +6,7 @@
 
 get_header(); ?>
 
-	<div id="content" class="narrowcolumn" role="main">
+	<div id="content" class="narrowcolumn">
 
 	<?php if (have_posts()) : ?>
 
Index: wp-content/themes/default/sidebar.php
===================================================================
--- wp-content/themes/default/sidebar.php	(revision 11591)
+++ wp-content/themes/default/sidebar.php	(working copy)
@@ -4,7 +4,7 @@
  * @subpackage Default_Theme
  */
 ?>
-	<div id="sidebar" role="complementary">
+	<div id="sidebar">
 		<ul>
 			<?php 	/* Widgetized sidebar, if you have the plugin installed. */
 					if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
@@ -50,7 +50,7 @@
 			</li>
 		<?php }?>
 		</ul>
-		<ul role="navigation">
+		<ul>
 			<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
 
 			<li><h2>Archives</h2>
Index: wp-content/themes/default/page.php
===================================================================
--- wp-content/themes/default/page.php	(revision 11591)
+++ wp-content/themes/default/page.php	(working copy)
@@ -6,7 +6,7 @@
 
 get_header(); ?>
 
-	<div id="content" class="narrowcolumn" role="main">
+	<div id="content" class="narrowcolumn">
 
 		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 		<div class="post" id="post-<?php the_ID(); ?>">
Index: wp-content/themes/default/archive.php
===================================================================
--- wp-content/themes/default/archive.php	(revision 11591)
+++ wp-content/themes/default/archive.php	(working copy)
@@ -7,7 +7,7 @@
 get_header();
 ?>
 
-	<div id="content" class="narrowcolumn" role="main">
+	<div id="content" class="narrowcolumn">
 
 		<?php if (have_posts()) : ?>
 
Index: wp-content/themes/default/single.php
===================================================================
--- wp-content/themes/default/single.php	(revision 11591)
+++ wp-content/themes/default/single.php	(working copy)
@@ -7,7 +7,7 @@
 get_header();
 ?>
 
-	<div id="content" class="widecolumn" role="main">
+	<div id="content" class="widecolumn">
 
 	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 
Index: wp-content/themes/default/header.php
===================================================================
--- wp-content/themes/default/header.php	(revision 11591)
+++ wp-content/themes/default/header.php	(working copy)
@@ -36,7 +36,7 @@
 <div id="page">
 
 
-<div id="header" role="banner">
+<div id="header">
 	<div id="headerimg">
 		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
 		<div class="description"><?php bloginfo('description'); ?></div>

