Index: theme.php
===================================================================
--- theme.php	(revision 17624)
+++ theme.php	(working copy)
@@ -1656,31 +1656,31 @@
 	if ( ! $background && ! $color )
 		return;
 
-	$style = $color ? "background-color: #$color;" : '';
+	$style = $color ? " #$color" : '';
 
 	if ( $background ) {
-		$image = " background-image: url('$background');";
+		$image = " url('$background')";
 
 		$repeat = get_theme_mod( 'background_repeat', 'repeat' );
 		if ( ! in_array( $repeat, array( 'no-repeat', 'repeat-x', 'repeat-y', 'repeat' ) ) )
 			$repeat = 'repeat';
-		$repeat = " background-repeat: $repeat;";
+		$repeat = " $repeat";
 
 		$position = get_theme_mod( 'background_position_x', 'left' );
 		if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
 			$position = 'left';
-		$position = " background-position: top $position;";
+		$position = " top $position";
 
 		$attachment = get_theme_mod( 'background_attachment', 'scroll' );
 		if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
 			$attachment = 'scroll';
-		$attachment = " background-attachment: $attachment;";
+		$attachment = " $attachment";
 
 		$style .= $image . $repeat . $position . $attachment;
 	}
 ?>
 <style type="text/css">
-body { <?php echo trim( $style ); ?> }
+body { background:<?php echo trim( $style ); ?> }
 </style>
 <?php
 }
