Index: wp-includes/js/comment-reply.js
===================================================================
--- wp-includes/js/comment-reply.js	(revision 8961)
+++ wp-includes/js/comment-reply.js	(working copy)
@@ -32,4 +32,4 @@
 	document.location.href = "#respond";
 	document.getElementById("comment").focus();				
 	document.getElementById("comment-parent").value = "0";
-}
\ No newline at end of file
+}
Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 8961)
+++ wp-includes/comment-template.php	(working copy)
@@ -927,7 +927,7 @@
 ?>
 		<<?php echo $tag ?> <?php comment_class() ?> id="comment-<?php comment_ID() ?>">
 		<?php if ( 'list' == $args['style'] ) : ?>
-		<div id="div-comment-<?php comment_ID() ?>">
+		<div id="comment-<?php comment_ID() ?>">
 		<?php endif; ?>
 		<div class="comment-author vcard">
 		<?php echo get_avatar( $comment, 32 ) ?>
@@ -943,8 +943,8 @@
 		<?php echo apply_filters('comment_text', get_comment_text()) ?>
 
 		<div class='reply'>
-		<?php echo comment_reply_link(array('add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['depth'])) ?>
-		<?php if ( 'list' == $args['style'] ) : ?>
+			<p><?php echo comment_reply_link(array('add_below' => 'comment', 'depth' => $depth, 'max_depth' => $args['depth'])) ?></p>
+			<?php if ( 'list' == $args['style'] ) : ?>
 		</div>
 		<?php endif; ?>
 		</div>
Index: wp-content/themes/default/style.css
===================================================================
--- wp-content/themes/default/style.css	(revision 8961)
+++ wp-content/themes/default/style.css	(working copy)
@@ -65,11 +65,18 @@
 	text-align: center;
 	}
 
-.alt {
+.alt, .even, .alt .even, .alt > .alt {
 	background-color: #f8f8f8;
 	border-top: 1px solid #ddd;
 	border-bottom: 1px solid #ddd;
-	}
+}
+.even .alt, .even > .even {
+	border-top: 1px solid #ddd;
+	background-color: white;
+}
+.commentlist .children li {
+	border-bottom: 0px;
+}
 
 #footer {
 	background: #eee url('images/kubrickfooter.jpg') no-repeat top;
@@ -134,10 +141,13 @@
 .commentlist li, #commentform input, #commentform textarea {
 	font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
 	}
+.commentlist li ul li {
+	font-size: 1em;
+}
 
 .commentlist li {
 	font-weight: bold;
-	}
+}
 
 .commentlist li .avatar { 
 	float: right;
@@ -513,10 +523,15 @@
 	}
 
 .commentlist li {
-	margin: 15px 0 3px;
-	padding: 5px 10px 3px;
+	margin: 15px 0 10px;
+	padding: 5px 10px 10px;
 	list-style: none;
+
 	}
+.commentlist li ul li { 
+	margin-right: -10px;
+	margin-left: 10px;
+	}
 
 .commentlist p {
 	margin: 10px 5px 10px 0;

