Index: wp-admin/menu-header.php
===================================================================
--- wp-admin/menu-header.php	(revision 17796)
+++ wp-admin/menu-header.php	(working copy)
@@ -76,6 +76,7 @@
 				$img = '<img src="' . $item[6] . '" alt="" />';
 		}
 		$toggle = '<div class="wp-menu-toggle"><br /></div>';
+		$arrow = '<div class="wp-menu-arrow"><div></div></div>';
 
 		$title = wptexturize($item[0]);
 
@@ -91,9 +92,9 @@
 				$menu_file = substr($menu_file, 0, $pos);
 			if ( ( ('index.php' != $submenu[$item[2]][0][2]) && file_exists(WP_PLUGIN_DIR . "/$menu_file") ) || !empty($menu_hook)) {
 				$admin_is_parent = true;
-				echo "<div class='wp-menu-image'><a href='admin.php?page={$submenu[$item[2]][0][2]}'>$img</a></div>$toggle<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class$tabindex>$title</a>";
+				echo "<div class='wp-menu-image'><a href='admin.php?page={$submenu[$item[2]][0][2]}'>$img</a></div>$arrow$toggle<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class$tabindex>$title</a>";
 			} else {
-				echo "\n\t<div class='wp-menu-image'><a href='{$submenu[$item[2]][0][2]}'>$img</a></div>$toggle<a href='{$submenu[$item[2]][0][2]}'$class$tabindex>$title</a>";
+				echo "\n\t<div class='wp-menu-image'><a href='{$submenu[$item[2]][0][2]}'>$img</a></div>$arrow$toggle<a href='{$submenu[$item[2]][0][2]}'$class$tabindex>$title</a>";
 			}
 		} else if ( current_user_can($item[1]) ) {
 			$menu_hook = get_plugin_page_hook($item[2], 'admin.php');
@@ -102,9 +103,9 @@
 				$menu_file = substr($menu_file, 0, $pos);
 			if ( ('index.php' != $item[2]) && file_exists(WP_PLUGIN_DIR . "/$menu_file") || !empty($menu_hook) ) {
 				$admin_is_parent = true;
-				echo "\n\t<div class='wp-menu-image'><a href='admin.php?page={$item[2]}'>$img</a></div>$toggle<a href='admin.php?page={$item[2]}'$class$tabindex>{$item[0]}</a>";
+				echo "\n\t<div class='wp-menu-image'><a href='admin.php?page={$item[2]}'>$img</a></div>$arrow$toggle<a href='admin.php?page={$item[2]}'$class$tabindex>{$item[0]}</a>";
 			} else {
-				echo "\n\t<div class='wp-menu-image'><a href='{$item[2]}'>$img</a></div>$toggle<a href='{$item[2]}'$class$tabindex>{$item[0]}</a>";
+				echo "\n\t<div class='wp-menu-image'><a href='{$item[2]}'>$img</a></div>$arrow$toggle<a href='{$item[2]}'$class$tabindex>{$item[0]}</a>";
 			}
 		}
 
@@ -170,6 +171,9 @@
 
 ?>
 
+<div id="adminmenuback"></div>
+<div id="adminmenuwrap">
+<div id="adminmenushadow"></div>
 <ul id="adminmenu">
 
 <?php
@@ -179,3 +183,4 @@
 
 ?>
 </ul>
+</div>
Index: wp-admin/users.php
===================================================================
--- wp-admin/users.php	(revision 17796)
+++ wp-admin/users.php	(working copy)
@@ -359,12 +359,7 @@
 <h2>
 <?php
 echo esc_html( $title );
-if ( current_user_can( 'create_users' ) ) { ?>
-	<a href="user-new.php" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
-<?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
-	<a href="user-new.php" class="button add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
-<?php }
-
+favorite_actions( $current_screen );
 if ( $usersearch )
 	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $usersearch ) ); ?>
 </h2>
Index: wp-admin/index.php
===================================================================
--- wp-admin/index.php	(revision 17796)
+++ wp-admin/index.php	(working copy)
@@ -56,7 +56,10 @@
 
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php echo esc_html( $title ); ?></h2>
+<h2><?php
+echo esc_html( $title );
+favorite_actions( $current_screen ); ?>
+</h2>
 
 <div id="dashboard-widgets-wrap">
 
Index: wp-admin/upload.php
===================================================================
--- wp-admin/upload.php	(revision 17796)
+++ wp-admin/upload.php	(working copy)
@@ -160,7 +160,9 @@
 
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php echo esc_html( $title ); ?> <a href="media-new.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'file'); ?></a> <?php
+<h2><?php
+echo esc_html( $title );
+favorite_actions( $current_screen );
 if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
 	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() ); ?>
 </h2>
Index: wp-admin/network/users.php
===================================================================
--- wp-admin/network/users.php	(revision 17796)
+++ wp-admin/network/users.php	(working copy)
@@ -72,13 +72,14 @@
 	?>
 <div class="wrap">
 	<?php screen_icon(); ?>
-	<h2><?php esc_html_e( 'Users' );
-	if ( current_user_can( 'create_users') ) : ?>
-		<a href="<?php echo network_admin_url('user-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php
-	endif;
-	
-	if ( !empty( $usersearch ) )
-	printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $usersearch ) );
+	<h2><?php
+	esc_html_e( 'Users' );
+	if ( current_user_can( 'create_users' ) ) {
+		favorite_actions( $current_screen );
+	}
+	if ( !empty( $usersearch ) ) {
+		printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $usersearch ) );
+	}
 	?>
 	</h2>
 
Index: wp-admin/network/themes.php
===================================================================
--- wp-admin/network/themes.php	(revision 17796)
+++ wp-admin/network/themes.php	(working copy)
@@ -34,7 +34,7 @@
 $referer = remove_query_arg( $temp_args, wp_get_referer() );
 
 if ( $action ) {
-	$allowed_themes = get_site_option( 'allowedthemes' );	
+	$allowed_themes = get_site_option( 'allowedthemes' );
 	switch ( $action ) {
 		case 'enable':
 			check_admin_referer('enable-theme_' . $_GET['theme']);
@@ -100,11 +100,11 @@
 				if ( $data['Name'] == $main_theme ) {
 					unset( $themes[$key] );
 				} else {
-					$files_to_delete = array_merge( $files_to_delete, list_files( WP_CONTENT_DIR . "/themes/$theme" ) );					
+					$files_to_delete = array_merge( $files_to_delete, list_files( WP_CONTENT_DIR . "/themes/$theme" ) );
 					$theme_info[ $theme ] = $data;
 				}
 			}
-			
+
 			if ( empty( $themes ) ) {
 				wp_redirect( add_query_arg( 'error', 'main', $referer ) );
 				exit;
@@ -162,7 +162,7 @@
 
 			foreach ( $themes as $theme )
 				$delete_result = delete_theme( $theme, esc_url( add_query_arg( array('verify-delete' => 1), $_SERVER['REQUEST_URI'] ) ) );
-			$paged = ( $_REQUEST['paged'] ) ? $_REQUEST['paged'] : 1; 
+			$paged = ( $_REQUEST['paged'] ) ? $_REQUEST['paged'] : 1;
 			wp_redirect( network_admin_url( "themes.php?deleted=".count( $themes )."&paged=$paged&s=$s" ) );
 			exit;
 			break;
@@ -199,9 +199,13 @@
 
 <div class="wrap">
 <?php screen_icon('themes'); ?>
-<h2><?php echo esc_html( $title ); if ( current_user_can('install_themes') ) { ?> <a href="theme-install.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'theme'); ?></a><?php }
-if ( $s ) 
-	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $s ) ); ?> 
+<h2><?php
+echo esc_html( $title );
+if ( current_user_can('install_themes') ) {
+	favorite_actions( $current_screen );
+}
+if ( $s )
+	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $s ) ); ?>
 </h2>
 
 <?php
Index: wp-admin/network/sites.php
===================================================================
--- wp-admin/network/sites.php	(revision 17796)
+++ wp-admin/network/sites.php	(working copy)
@@ -99,13 +99,13 @@
 
 <div class="wrap">
 <?php screen_icon('ms-admin'); ?>
-<h2><?php _e('Sites') ?>
-<?php echo $msg; ?>
-<?php if ( current_user_can( 'create_sites') ) : ?>
-        <a href="<?php echo network_admin_url('site-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'site' ); ?></a>
-<?php endif; ?>
-
-<?php if ( isset( $_REQUEST['s'] ) && $_REQUEST['s'] ) {
+<h2><?php
+_e('Sites')
+echo $msg;
+if ( current_user_can( 'create_sites') ) {
+	favorite_actions( $current_screen );
+}
+if ( isset( $_REQUEST['s'] ) && $_REQUEST['s'] ) {
 	printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $s ) );
 } ?>
 </h2>
Index: wp-admin/admin-header.php
===================================================================
--- wp-admin/admin-header.php	(revision 17796)
+++ wp-admin/admin-header.php	(working copy)
@@ -101,6 +101,7 @@
 </script>
 
 <div id="wpwrap">
+<?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
 <div id="wpcontent">
 <div id="wphead">
 <?php
@@ -130,7 +131,7 @@
 }
 ?>
 
-<img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="32" height="32" />
+<img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="16" height="16" />
 <h1 id="site-heading" <?php echo $title_class ?>>
 	<a href="<?php echo trailingslashit( get_bloginfo( 'url' ) ); ?>" title="<?php esc_attr_e('Visit Site') ?>">
 		<span id="site-title"><?php echo $blog_name ?></span>
@@ -161,8 +162,6 @@
 echo implode(' ', $links);
 ?></p>
 </div>
-
-<?php favorite_actions($current_screen); ?>
 </div>
 </div>
 
@@ -170,8 +169,6 @@
 <?php
 unset($title_class, $blog_name, $total_update_count, $update_title);
 
-require(ABSPATH . 'wp-admin/menu-header.php');
-
 $current_screen->parent_file = $parent_file;
 $current_screen->parent_base = preg_replace('/\?.*$/', '', $parent_file);
 $current_screen->parent_base = str_replace('.php', '', $current_screen->parent_base);
Index: wp-admin/images/wp-logo-vs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: wp-admin/images/wp-logo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: wp-admin/plugins.php
===================================================================
--- wp-admin/plugins.php	(revision 17796)
+++ wp-admin/plugins.php	(working copy)
@@ -385,10 +385,11 @@
 
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php echo esc_html( $title );
-if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
-<a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="button add-new-h2"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
-<?php }
+<h2><?php
+echo esc_html( $title );
+if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) {
+	favorite_actions( $current_screen );
+}
 if ( $s )
 	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $s ) ); ?>
 </h2>
Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 17796)
+++ wp-admin/edit.php	(working copy)
@@ -190,7 +190,9 @@
 ?>
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php echo esc_html( $post_type_object->labels->name ); ?> <a href="<?php echo $post_new_file ?>" class="button add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a> <?php
+<h2><?php
+echo esc_html( $post_type_object->labels->name );
+favorite_actions( $current_screen );
 if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
 	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() ); ?>
 </h2>
Index: wp-admin/css/theme-editor.dev.css
===================================================================
--- wp-admin/css/theme-editor.dev.css	(revision 17796)
+++ wp-admin/css/theme-editor.dev.css	(working copy)
@@ -10,6 +10,8 @@
 	font-family: Consolas, Monaco, Courier, monospace;
 	font-size: 12px;
 	width: 97%;
+	background: #f9f9f9;
+	outline: none;
 }
 
 #template p {
Index: wp-admin/css/dashboard.dev.css
===================================================================
--- wp-admin/css/dashboard.dev.css	(revision 17796)
+++ wp-admin/css/dashboard.dev.css	(working copy)
@@ -9,6 +9,7 @@
 }
 
 form .input-text-wrap {
+	background: #fff;
 	border-style: solid;
 	border-width: 1px;
 	padding: 2px 3px;
@@ -25,6 +26,7 @@
 }
 
 form .textarea-wrap {
+	background: #fff;
 	border-style: solid;
 	border-width: 1px;
 	padding: 2px;
@@ -57,7 +59,7 @@
 }
 
 div.postbox div.inside {
-	margin: 10px;
+	margin: 10px 0;
 	position: relative;
 }
 
@@ -95,19 +97,17 @@
 }
 
 #dashboard_right_now p.sub {
-	font-style: italic;
-	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
-	padding: 5px 10px 15px;
-	color: #777;
-	font-size: 13px;
+	padding: 5px 0 15px;
+	color: #8f8f8f;
+	font-size: 14px;
 	position: absolute;
 	top: -17px;
 	left: 15px;
 }
 
 #dashboard_right_now .table {
-	margin: 0 -9px;
-	padding: 0 10px;
+	margin: 0;
+	padding: 0;
 	position: relative;
 }
 
@@ -199,7 +199,7 @@
 
 #dashboard_recent_comments .comment-meta .approve {
 	font-style: italic;
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	font-size: 10px;
 }
 
@@ -263,7 +263,7 @@
 /* QuickPress */
 
 #dashboard_quick_press h4 {
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	float: left;
 	width: 5.5em;
 	clear: both;
@@ -331,7 +331,7 @@
 }
 
 #dashboard_recent_drafts h4 abbr {
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	font-size: 11px;
 	color: #999;
 	margin-left: 3px;
@@ -379,7 +379,7 @@
 /* Plugins */
 
 #dashboard_plugins h4 {
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 }
 
 #dashboard_plugins h5 {
Index: wp-admin/css/global.dev.css
===================================================================
--- wp-admin/css/global.dev.css	(revision 17796)
+++ wp-admin/css/global.dev.css	(working copy)
@@ -62,53 +62,65 @@
 	height: auto;
 	min-height: 100%;
 	width: 100%;
+	position: relative;
 }
 
 #wpcontent {
 	height: 100%;
-	padding-bottom: 50px;
 }
 
-#wpbody {
-	clear: both;
-	margin-left: 175px;
+#wpcontent,
+#footer {
+	margin-left: 160px;
 }
 
-.folded #wpbody {
-	margin-left: 60px;
+#wpbody-content {
+	padding-bottom: 50px;
 }
 
+.folded #wpcontent,
+.folded #footer {
+	margin-left: 47px;
+}
+
 #wpbody-content {
 	float: left;
 	width: 100%;
 }
 
+#adminmenuback,
+#adminmenuwrap,
+#adminmenu,
+#adminmenu .wp-submenu ul {
+	width: 145px;
+}
+
+#adminmenuback {
+	position: absolute;
+	top: 0;
+	bottom: 0;
+	z-index: -1;
+}
+
+#adminmenuwrap {
+	float: left;
+}
+
 #adminmenu {
-	float: left;
 	clear: left;
-	width: 145px;
-	margin-top: 15px;
-	margin-right: 5px;
-	margin-bottom: 15px;
-	margin-left: -160px;
-	position: relative;
 	padding: 0;
 	list-style: none;
 }
 
-.folded #adminmenu {
-	margin-left: -45px;
-}
-
+.folded #adminmenuback,
+.folded #adminmenuwrap,
 .folded #adminmenu,
 .folded #adminmenu li.menu-top {
-	width: 28px;
+	width: 32px;
 }
 
 #footer {
-	clear: both;
 	position: relative;
-	width: 100%;
 }
 
 /* inner 2 column liquid layout */
@@ -228,7 +240,7 @@
 textarea,
 input,
 select {
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	font-size: 13px;
 }
 
@@ -502,7 +514,9 @@
 }
 
 .wrap h2 {
-	font: italic normal normal 24px/29px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
+	font-weight: 200;
+	font-size: 24px;
 	margin: 0;
 	padding: 14px 15px 3px 0;
 	line-height: 35px;
Index: wp-admin/css/colors-classic.dev.css
===================================================================
--- wp-admin/css/colors-classic.dev.css	(revision 17796)
+++ wp-admin/css/colors-classic.dev.css	(working copy)
@@ -1,6 +1,6 @@
 html,
 .wp-dialog {
-	background-color: #fcfcfb;
+	background-color: #fff;
 }
 
 * html input,
@@ -570,9 +570,6 @@
 #footer {
 	color: #777;
 	border-color: #b0c8d7;
-	background: #cfdfe9; /* fallback color */
-	background:-moz-linear-gradient(bottom,	#cfdfe9, #eff8ff);
-	background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
 }
 
 #media-items,
@@ -696,9 +693,6 @@
 
 #wphead {
 	border-bottom:#b0c8d7 1px solid;
-	background: #cfdfe9; /* fallback color */
-	background:-moz-linear-gradient(bottom,	#cfdfe9, #eff8ff);
-	background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
 }
 
 #wphead h1 a {
Index: wp-admin/css/colors-fresh.dev.css
===================================================================
--- wp-admin/css/colors-fresh.dev.css	(revision 17796)
+++ wp-admin/css/colors-fresh.dev.css	(working copy)
@@ -1,6 +1,6 @@
 html,
 .wp-dialog {
-	background-color: #f9f9f9;
+	background-color: #fff;
 }
 
 * html input,
@@ -138,8 +138,11 @@
 .widget .widget-top,
 .postbox h3,
 .stuffbox h3 {
-	background: #dfdfdf url("../images/gray-grad.png") repeat-x left top;
+	border-bottom-color: #dfdfdf;
 	text-shadow: #fff 0 1px 0;
+	-moz-box-shadow: 0 1px 0 #fff;
+	-webkit-box-shadow: 0 1px 0 #fff;
+	box-shadow: 0 1px 0 #fff;
 }
 
 .form-table th,
@@ -569,10 +572,7 @@
 
 #footer {
 	color: #777;
-	border-color: #d1d1d1;
-	background: #d9d9d9; /* fallback color */
-	background:-moz-linear-gradient(bottom,	#d7d7d7, #e4e4e4);
-	background:-webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4));
+	border-color: #dfdfdf;
 }
 
 #media-items,
@@ -642,11 +642,15 @@
 #poststuff .postarea,
 .stuffbox {
 	border-color: #dfdfdf;
+	-moz-box-shadow: inset 0 1px 0 #fff;
+	-webkit-box-shadow: inset 0 1px 0 #fff;
+	box-shadow: inset 0 1px 0 #fff;
 }
 
 .widget,
+#widget-list .widget-top,
 .postbox {
-	background-color: #fff;
+	background-color: #f9f9f9;
 }
 
 .ui-sortable .postbox h3 {
@@ -695,10 +699,7 @@
 }
 
 #wphead {
-	border-bottom:#c6c6c6 1px solid;
-	background: #d9d9d9; /* fallback color */
-	background:-moz-linear-gradient(bottom,	#d7d7d7, #e4e4e4);
-	background:-webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4));
+	border-bottom:#dfdfdf 1px solid;
 }
 
 #wphead h1 a {
@@ -713,7 +714,6 @@
 #user_info a:visited,
 #footer a:link,
 #footer a:visited {
-	color: #222;
 	text-decoration: none;
 }
 
@@ -1083,21 +1083,32 @@
 }
 
 /* menu */
-#adminmenu * {
-	border-color: #e3e3e3;
+#adminmenuback,
+#adminmenuwrap {
+	background-color: #ececec;
+	border-color: #dfdfdf;
 }
 
+#adminmenushadow,
+#adminmenuback {
+	background-image: url(../images/menu-shadow.png);
+	background-position: top right;
+	background-repeat: repeat-y;
+}
+
 #adminmenu li.wp-menu-separator {
-	background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
+	background: #cfcfcf;
+	border-color: #b7b7b7;
 }
 
-.folded #adminmenu li.wp-menu-separator {
-	background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
+#adminmenu a.separator {
+	border-color: #e1e1e1;
 }
 
 #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
 #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
-	background: transparent url(../images/menu-bits.gif?ver=20100610) no-repeat scroll left -207px;
+/*	background: transparent url(../images/menu-bits.gif?ver=20100610) no-repeat scroll left -207px;*/
+	background: transparent;
 }
 
 #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
@@ -1105,55 +1116,40 @@
 	background: transparent url(../images/menu-bits.gif?ver=20100610) no-repeat scroll left -109px;
 }
 
-#adminmenu a.menu-top {
-	background: #f1f1f1 url(../images/menu-bits.gif?ver=20100610) repeat-x scroll left -379px;
+#adminmenu a.menu-top,
+.folded #adminmenu li.menu-top {
+	border-top-color: #f9f9f9;
+	border-bottom-color: #dfdfdf;
 }
 
-#adminmenu .wp-submenu a {
-	background: #fff url(../images/menu-bits.gif?ver=20100610) no-repeat scroll 0 -310px;
+#adminmenu li.wp-menu-open {
+	border-color: #dfdfdf;
 }
 
-#adminmenu .wp-has-current-submenu ul li a {
-	background: none;
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu li.current a.menu-top,
+.folded #adminmenu li.wp-has-current-submenu,
+.folded #adminmenu li.current.menu-top,
+#adminmenu .wp-menu-arrow {
+	background: #777; /* fallback color */
+	background:-moz-linear-gradient(bottom,	#6d6d6d, #808080);
+	background:-webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
 }
 
-#adminmenu .wp-has-current-submenu ul li a.current {
-	background: url(../images/menu-dark.gif) top left no-repeat !important;
-}
-
-.wp-has-current-submenu .wp-submenu {
-	border-top: none !important;
-}
-
-#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
-	border-bottom: #aaa 1px solid;
-}
-
 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
 #adminmenu li.current a.menu-top {
-	background: #e0e0e0 url(../images/menu-bits.gif?ver=20100610) top left repeat-x;
-	border: #aaa 1px solid;
-	color: #000;
+	text-shadow: 0 -1px 0 #333;
+	color: #fff;
+	border-top-color: #808080;
+	border-bottom-color: #6d6d6d;
 }
 
-#adminmenu li.wp-has-current-submenu .wp-submenu,
-#adminmenu li.wp-has-current-submenu ul li a {
-	border-right-color: #aaa !important;
-	border-left-color: #aaa !important;
+.folded #adminmenu li.wp-has-current-submenu,
+.folded #adminmenu li.current.menu-top {
+	border-top-color: #808080;
+	border-bottom-color: #6d6d6d;
 }
 
-#adminmenu li.wp-has-current-submenu ul li a {
-	background: url(../images/menu-dark.gif) bottom left no-repeat !important;
-}
-
-#adminmenu li.wp-has-current-submenu ul {
-	border-bottom-color: #aaa;
-}
-
-#adminmenu .wp-submenu .current a.current {
-	background: transparent url(../images/menu-bits.gif?ver=20100610) no-repeat scroll 0 -289px;
-}
-
 #adminmenu .wp-submenu a:hover {
 	background-color: #EAF2FA !important;
 	color: #333 !important;
@@ -1163,9 +1159,6 @@
 #adminmenu .wp-submenu li.current a,
 #adminmenu .wp-submenu li.current a:hover {
 	color: #333;
-	background-color: #f5f5f5;
-	background-image: none;
-	border-color: #e3e3e3;
 }
 
 #adminmenu .wp-submenu ul {
@@ -1184,7 +1177,6 @@
 
 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
 	background-color: #EAEAEA;
-	border-color: #aaa;
 }
 
 #adminmenu div.wp-submenu {
@@ -1344,8 +1336,15 @@
 	border-color: #dfdfdf;
 }
 
+#screen-options-link-wrap,
+#contextual-help-link-wrap {
+	background-color: #e3e3e3;
+	background-image: -moz-linear-gradient(bottom,  #dfdfdf,  #f1f1f1);
+	background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
+}
+
 #screen-meta-links a.show-settings {
-	color: #606060;
+	color: #777;
 }
 
 #screen-meta-links a.show-settings:hover {
@@ -1448,10 +1447,6 @@
 	background: transparent url(../images/menu-bits.gif?ver=20100610) no-repeat scroll left -111px;
 }
 
-#major-publishing-actions {
-	background: #eaf2fa;
-}
-
 .tablenav .tablenav-pages {
 	color: #555;
 }
@@ -1556,7 +1551,7 @@
 }
 
 #favorite-toggle {
-	background: transparent url(../images/fav-arrow.gif?ver=20100531) no-repeat 0 -4px;
+	background: transparent url(../images/fav-arrow.gif?ver=20100531) no-repeat 0 -6px;
 }
 
 #favorite-actions a {
@@ -1746,11 +1741,17 @@
 	background-color: #f1f1f1;
 }
 
-#nav-menu-header, #nav-menu-footer, .menu-item-handle {
-	background: url("../images/gray-grad.png") repeat-x scroll left top #dfdfdf;
+#nav-menu-header, #nav-menu-footer {
+	background: #f9f9f9;
 }
 
+.menu-item-handle {
+	background-color: #e3e3e3;
+	background-image: -moz-linear-gradient(bottom,  #dfdfdf,  #f1f1f1);
+	background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
+}
+
 #menu-management .nav-tab-active {
-	background: #ececec;
-	border-bottom-color: #ececec;
+	background: #f9f9f9;
+	border-bottom-color: #f9f9f9;
 }
Index: wp-admin/css/widgets.dev.css
===================================================================
--- wp-admin/css/widgets.dev.css	(revision 17796)
+++ wp-admin/css/widgets.dev.css	(working copy)
@@ -116,6 +116,7 @@
 	width: 250px;
 	margin: 0 10px 15px;
 	border: 0 none;
+	background: transparent;
 	float: left;
 }
 
Index: wp-admin/css/wp-admin.dev.css
===================================================================
--- wp-admin/css/wp-admin.dev.css	(revision 17796)
+++ wp-admin/css/wp-admin.dev.css	(working copy)
@@ -108,7 +108,7 @@
 .howto {
 	font-style: italic;
 	display: block;
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 }
 
 p.install-help {
@@ -408,13 +408,6 @@
 	display: none;
 }
 
-.add-new-h2 {
-	font-style: normal;
-	margin: 0 6px;
-	position: relative;
-	top: -3px;
-}
-
 td.action-links,
 th.action-links {
 	text-align: right;
@@ -712,7 +705,7 @@
 #wp-fullscreen-info {
 	float: right;
 	padding: 3px 10px;
-	
+
 	display: none;
 }
 
@@ -842,24 +835,24 @@
 ------------------------------------------------------------------------------*/
 #wphead-info {
 	margin: 0 0 0 15px;
-	padding-right: 15px;
 }
 
 #user_info {
 	float: right;
 	font-size: 12px;
-	line-height: 46px;
-	height: 46px;
+	line-height: 32px;
+	height: 32px;
 }
 
 #user_info p {
 	margin: 0;
 	padding: 0;
-	line-height: 46px;
+	line-height: 32px;
 }
 
 #wphead {
-	height: 46px;
+	height: 32px;
+	margin-right: 15px;
 }
 
 #wphead a,
@@ -873,12 +866,12 @@
 
 #header-logo {
 	float: left;
-	margin: 7px 0 0 15px;
+	margin: 7px 0;
 }
 
 #wphead h1 {
-	font: normal 22px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
-	padding: 10px 8px 5px;
+	font: normal 15px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+	padding: 7px 8px 5px;
 	margin: 0;
 	float: left;
 }
@@ -910,10 +903,11 @@
 ------------------------------------------------------------------------------*/
 
 #favorite-actions {
-	float: right;
-	margin: 11px 12px 0;
+	margin: 6px 12px 0;
 	min-width: 130px;
 	position: relative;
+	display: inline-block;
+	top: -3px;
 }
 
 #favorite-first {
@@ -922,13 +916,13 @@
 	-webkit-border-radius: 12px;
 	border-radius: 12px;
 	line-height: 15px;
-	padding: 3px 30px 4px 12px;
+	padding: 2px 30px 2px 12px;
 	border-width: 1px;
 	border-style: solid;
 }
 
 #favorite-inside {
-	margin: 0 0 0 0px;
+	margin: 0;
 	padding: 2px 1px;
 	border-width: 1px;
 	border-style: solid;
@@ -952,10 +946,11 @@
 
 #favorite-inside a {
 	padding: 3px 5px 3px 10px;
+	line-height: 20px;
 }
 
 #favorite-toggle {
-	height: 22px;
+	height: 18px;
 	position: absolute;
 	right: 0;
 	top: 1px;
@@ -984,7 +979,7 @@
 }
 
 #screen-meta-links {
-	margin: 0 18px 0 0;
+	margin: 0 15px 0 0;
 }
 
 #screen-meta .screen-reader-text {
@@ -996,9 +991,8 @@
 	float: right;
 	height: 22px;
 	padding: 0;
-	margin: 0 6px 0 0;
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
-	background: #e3e3e3;
+	margin: 0 0 0 6px;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	-moz-border-radius-bottomleft: 3px;
 	-moz-border-radius-bottomright: 3px;
 	-webkit-border-bottom-left-radius: 3px;
@@ -1028,7 +1022,7 @@
 	padding: 0 16px 0 6px;
 	height: 22px;
 	line-height: 22px;
-	font-size: 10px;
+	font-size: 11px;
 	display: block;
 	background-repeat: no-repeat;
 	background-position: top right;
@@ -1079,6 +1073,24 @@
   7.0 - Main Navigation (Left Menu)
 ------------------------------------------------------------------------------*/
 
+#adminmenuback,
+#adminmenuwrap {
+	border-width: 0 1px 0 0;
+	border-style: solid;
+}
+#adminmenuwrap {
+	position: relative;
+}
+
+#adminmenushadow {
+	position: absolute;
+	top: 0;
+	right: 0;
+	bottom: 0;
+	width: 6px;
+	z-index: 20;
+}
+
 /* side admin menu */
 #adminmenu * {
 	-webkit-user-select: none;
@@ -1094,12 +1106,11 @@
 	margin: 0;
 	position: relative;
 	z-index: 2;
-	border-width: 1px 0 0;
-	border-style: solid none none;
 }
 
 #adminmenu .wp-submenu a {
-	font: normal 11px/18px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-size: 12px;
+	line-height: 18px;
 }
 
 #adminmenu .wp-submenu li.current,
@@ -1110,7 +1121,8 @@
 
 #adminmenu a.menu-top,
 #adminmenu .wp-submenu-head {
-	font: normal 13px/18px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+	font-size: 13px;
+	line-height: 18px;
 }
 
 #adminmenu div.wp-submenu-head {
@@ -1143,6 +1155,9 @@
 	width: 28px;
 	height: 28px;
 }
+.folded #adminmenu div.wp-menu-image {
+	width: 32px;
+}
 
 #adminmenu li {
 	margin: 0;
@@ -1153,32 +1168,49 @@
 #adminmenu a {
 	display: block;
 	line-height: 18px;
-	padding: 1px 5px 3px;
+	padding: 2px 5px;
 }
 
 #adminmenu li.menu-top {
 	min-height: 26px;
+	position: relative;
 }
 
 #adminmenu a.menu-top {
 	line-height: 18px;
 	min-width: 10em;
 	padding: 5px 5px;
-	border-width: 1px 1px 0;
-	border-style: solid solid none;
+	border-width: 1px 0 1px;
+	border-style: solid;
 }
 
+#adminmenu li.wp-menu-open {
+	border-width: 0 0 1px;
+	border-style: solid;
+}
+
 #adminmenu .wp-submenu a {
 	margin: 0;
-	padding-left: 12px;
-	border-width: 0 1px 0 0;
-	border-style: none solid none none;
+	padding-left: 28px;
 }
 
-#adminmenu .menu-top-last ul.wp-submenu {
-	border-width: 0 0 1px;
-	border-style: none none solid;
+.wp-menu-arrow {
+	display: none;
 }
+#adminmenu li.wp-has-current-submenu .wp-menu-arrow,
+#adminmenu li.menu-top.current .wp-menu-arrow {
+	display: block;
+	position: absolute;
+	right: -9px;
+	top: 0;
+	cursor: auto;
+	z-index: 25;
+}
+#adminmenu .wp-menu-arrow div {
+	width: 15px;
+	height: 30px;
+	background: url(../images/menu-arrow-frame.png) top right no-repeat;
+}
 
 #adminmenu .wp-submenu li {
 	padding: 0;
@@ -1186,54 +1218,12 @@
 }
 
 .folded #adminmenu li.menu-top {
-	width: 28px;
-	height: 30px;
-	overflow: hidden;
-	border-width: 1px 1px 0;
-	border-style: solid solid none;
-}
-
-#adminmenu .menu-top-first a.menu-top,
-.folded #adminmenu li.menu-top-first,
-#adminmenu .wp-submenu .wp-submenu-head {
-	border-width: 1px 1px 0;
-	border-style: solid solid none;
-	-moz-border-radius-topleft :6px;
-	-moz-border-radius-topright: 6px;
-	-webkit-border-top-right-radius: 6px;
-	-webkit-border-top-left-radius: 6px;
-	-khtml-border-top-right-radius: 6px;
-	-khtml-border-top-left-radius: 6px;
-	border-top-right-radius: 6px;
-	border-top-left-radius: 6px;
-}
-
-#adminmenu .menu-top-last a.menu-top,
-.folded #adminmenu li.menu-top-last {
-	border-width: 1px;
+	width: 32px;
+	height: 29px;
+	border-width: 1px 0;
 	border-style: solid;
-	-moz-border-radius-bottomleft: 6px;
-	-moz-border-radius-bottomright: 6px;
-	-webkit-border-bottom-right-radius: 6px;
-	-webkit-border-bottom-left-radius: 6px;
-	-khtml-border-bottom-right-radius: 6px;
-	-khtml-border-bottom-left-radius: 6px;
-	border-bottom-right-radius: 6px;
-	border-bottom-left-radius: 6px;
 }
 
-#adminmenu li.wp-menu-open a.menu-top-last {
-	border-bottom: 0 none;
-	-moz-border-radius-bottomright: 0;
-	-moz-border-radius-bottomleft: 0;
-	-webkit-border-bottom-right-radius: 0;
-	-webkit-border-bottom-left-radius: 0;
-	-khtml-border-bottom-right-radius: 0;
-	-khtml-border-bottom-left-radius: 0;
-	border-bottom-right-radius: 0;
-	border-bottom-left-radius: 0;
-}
-
 #adminmenu .wp-menu-image img {
 	float: left;
 	padding: 8px 6px 0;
@@ -1248,29 +1238,26 @@
 }
 
 #adminmenu li.wp-menu-separator {
-	height: 21px;
+	height: 2px;
 	padding: 0;
 	margin: 0;
+	border-width: 1px 0;
+	border-style: solid;
 }
 
 #adminmenu a.separator {
 	cursor: w-resize;
-	height: 20px;
+	height: 1px;
 	padding: 0;
+	border-width: 1px 0 0 0;
+	border-style: solid;
 }
 
 .folded #adminmenu a.separator {
  	cursor: e-resize;
 }
 
-#adminmenu .wp-menu-separator-last {
-	height: 10px;
-	width: 1px;
-}
-
 #adminmenu .wp-submenu .wp-submenu-head {
-	border-width: 1px;
-	border-style: solid;
 	padding: 6px 4px 6px 10px;
 	cursor: default;
 }
@@ -1280,19 +1267,8 @@
 	margin: -1px 0 0 28px;
 	padding: 0 8px 8px;
 	z-index: 999;
-	border: 0 none;
 }
 
-.folded #adminmenu .wp-submenu ul {
-	width: 140px;
-	border-width: 0 0 1px;
-	border-style: none none solid;
-}
-
-.folded #adminmenu .wp-submenu li.wp-first-item {
-	border-top: 0 none;
-}
-
 .folded #adminmenu .wp-submenu a {
 	padding-left: 10px;
 }
@@ -1301,11 +1277,6 @@
 	margin-left: 40px;
 }
 
-#adminmenu li.menu-top-last .wp-submenu ul {
-	border-width: 0 0 1px;
-	border-style: none none solid;
-}
-
 #adminmenu .wp-menu-toggle {
 	width: 22px;
 	clear: right;
@@ -1316,11 +1287,6 @@
 	cursor: default;
 }
 
-#adminmenu li.wp-has-current-submenu ul {
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-}
-
 #adminmenu .wp-menu-image a {
 	height: 24px;
 }
@@ -1333,7 +1299,7 @@
 #adminmenu span.update-plugins,
 #sidemenu li a span.update-plugins {
 	position: absolute;
-	font-family: Helvetica, Arial, sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	font-size: 9px;
 	line-height: 17px;
 	font-weight: bold;
@@ -1359,7 +1325,7 @@
 
 .post-com-count-wrapper {
 	min-width: 22px;
-	font-family: Helvetica, Arial, sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 }
 
 .post-com-count {
@@ -1419,7 +1385,8 @@
 	min-width: 785px;
 }
 
-body.admin-bar #wphead {
+body.admin-bar #wphead,
+body.admin-bar #adminmenu {
 	padding-top: 28px;
 }
 
@@ -1492,37 +1459,24 @@
 .postbox,
 .stuffbox {
 	margin-bottom: 20px;
+	padding: 0 10px;
 	border-width: 1px;
 	border-style: solid;
 	line-height: 1;
-	-moz-border-radius: 6px;
-	-khtml-border-radius: 6px;
-	-webkit-border-radius: 6px;
-	border-radius: 6px;
 }
 
 .widget .widget-top,
 .postbox h3,
-.postbox h3,
 .stuffbox h3 {
-	-moz-border-radius: 6px 6px 0 0;
-	-webkit-border-top-right-radius: 6px;
-	-webkit-border-top-left-radius: 6px;
-	-khtml-border-top-right-radius: 6px;
-	-khtml-border-top-left-radius: 6px;
-	border-top-right-radius: 6px;
-	border-top-left-radius: 6px;
+	border-bottom-width: 1px;
+	border-style: solid;
 }
 
 .postbox.closed h3 {
-	-moz-border-radius-bottomleft: 4px;
-	-webkit-border-bottom-left-radius: 4px;
-	-khtml-border-bottom-left-radius: 4px;
-	border-bottom-left-radius: 4px;
-	-moz-border-radius-bottomright: 4px;
-	-webkit-border-bottom-right-radius: 4px;
-	-khtml-border-bottom-right-radius: 4px;
-	border-bottom-right-radius: 4px;
+	border: none;
+	-moz-box-shadow: none;
+	-webkit-box-shadow: none;
+	box-shadow: none;
 }
 
 .postbox table.form-table {
@@ -2052,7 +2006,7 @@
 .inline-edit-row .catshow,
 .inline-edit-row .cathide,
 .inline-edit-row #bulk-titles div {
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 	font-style: normal;
 	font-size: 11px;
 }
@@ -2935,7 +2889,7 @@
 .form-wrap p {
 	font-size: 12px;
 	font-style: italic;
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 }
 
 .form-wrap .form-field {
@@ -3280,71 +3234,6 @@
 	bottom: 1px;
 }
 
-/* favorite-actions */
-#favorite-actions {
-	float: right;
-	margin: 11px 12px 0;
-	min-width: 130px;
-	position: relative;
-}
-
-#favorite-first {
-	-moz-border-radius: 12px;
-	-khtml-border-radius: 12px;
-	-webkit-border-radius: 12px;
-	border-radius: 12px;
-	line-height: 15px;
-	padding: 3px 30px 4px 12px;
-	border-width: 1px;
-	border-style: solid;
-}
-
-#favorite-inside {
-	margin: 0 0 0 0px;
-	padding: 2px 1px;
-	border-width: 1px;
-	border-style: solid;
-	position: absolute;
-	z-index: 11;
-	display: none;
-	-moz-border-radius: 0 0 12px 12px;
-	-webkit-border-bottom-right-radius: 12px;
-	-webkit-border-bottom-left-radius: 12px;
-	-khtml-border-bottom-right-radius: 12px;
-	-khtml-border-bottom-left-radius: 12px;
-	border-bottom-right-radius: 12px;
-	border-bottom-left-radius: 12px;
-}
-
-#favorite-actions a {
-	display: block;
-	text-decoration: none;
-	font-size: 11px;
-}
-
-#favorite-inside a {
-	padding: 3px 5px 3px 10px;
-}
-
-#favorite-toggle {
-	height: 22px;
-	position: absolute;
-	right: 0;
-	top: 1px;
-	width: 28px;
-}
-
-#favorite-actions .slide-down {
-	-moz-border-radius: 12px 12px 0 0;
-	-webkit-border-bottom-right-radius: 0;
-	-webkit-border-bottom-left-radius: 0;
-	-khtml-border-bottom-right-radius: 0;
-	-khtml-border-bottom-left-radius: 0;
-	border-bottom-right-radius: 0;
-	border-bottom-left-radius: 0;
-	border-bottom: none;
-}
-
 ul#dismissed-updates {
 	display: none;
 }
@@ -4018,7 +3907,7 @@
 
 .nav-tab {
 	border-style: solid;
-	border-color: #ccc #ccc #f9f9f9;
+	border-color: #ccc #ccc #fff;
 	border-width: 1px 1px 0;
 	color: #c1c1c1;
 	text-shadow: rgba(255,255,255,1) 0 1px 0;
@@ -4049,7 +3938,11 @@
 
 h2 .nav-tab {
 	padding: 4px 20px 6px;
-	font: italic normal normal 24px/35px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
+	font-weight: 200;
+	font-size: 24px;
+	line-height: 35px;
+
 }
 
 
@@ -4258,7 +4151,7 @@
 #utc-time, #local-time {
 	padding-left: 25px;
 	font-style: italic;
-	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+	font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
 }
 
 .defaultavatarpicker .avatar {
@@ -4273,6 +4166,7 @@
 
 #footer {
 	margin-top: -46px;
+	margin-right: 15px;
 	border-top: 1px;
 	border-style: solid;
 }
@@ -4280,13 +4174,11 @@
 #footer,
 #footer a {
 	font-size: 12px;
-	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
-	font-style: italic;
 }
 
 #footer p {
 	margin: 0;
-	padding: 15px;
+	padding: 15px 0;
 	line-height: 15px;
 }
 
@@ -4398,16 +4290,17 @@
 }
 #poststuff h3,
 .metabox-holder h3 {
-	font-size: 12px;
-	font-weight: bold;
-	padding: 7px 9px;
+	font-size: 14px;
+	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+	font-weight: normal;
+	padding: 7px 0;
 	margin: 0;
 	line-height: 1;
 }
 #poststuff .inside,
 #poststuff .inside p {
 	font-size: 11px;
-	margin: 6px 6px 8px;
+	margin: 6px 0 8px;
 }
 #poststuff .inside .submitbox p {
 	margin: 1em 0;
Index: wp-admin/css/nav-menu.dev.css
===================================================================
--- wp-admin/css/nav-menu.dev.css	(revision 17796)
+++ wp-admin/css/nav-menu.dev.css	(working copy)
@@ -31,7 +31,6 @@
 
 #menu-settings-column .inside {
 	clear: both;
-	padding:0 10px;
 }
 
 .metabox-holder-disabled .postbox {
@@ -57,55 +56,34 @@
 	margin-top: -3px;
 	width: 100%;
 }
-	#menu-management .menu-edit {
-		margin-bottom: 20px;
-	}
+#menu-management .menu-edit {
+	background: #f9f9f9;
+	padding: 0 10px;
+	border: 1px solid #dfdfdf;
+	margin-bottom: 20px;
+}
+#post-body {
+	padding: 10px 0;
+	border-top: 1px solid #fff;
+	border-bottom: 1px solid #dfdfdf;
+}
+#nav-menu-header {
+	border-bottom: 1px solid #dfdfdf;
+}
+#nav-menu-footer {
+	border-top: 1px solid #fff;
+}
 
-	#nav-menu-header, #post-body, #nav-menu-footer {
-		border-color: #ccc;
-		border-style: solid;
-	}
+#post-body div.updated {
+	margin: 0;
+}
 
-	#nav-menu-header {
-		border-width: 1px 1px 0 1px;
-		-moz-border-radius-topleft: 6px;
-		-webkit-border-top-left-radius: 6px;
-		-khtml-border-top-left-radius: 6px;
-		border-top-left-radius: 6px;
-		-moz-border-radius-topright: 6px;
-		-webkit-border-top-right-radius: 6px;
-		-khtml-border-top-right-radius: 6px;
-		border-top-right-radius: 6px;
-	}
+#post-body-content {
+	position: relative;
+}
 
-	#post-body {
-		background: #fff;
-		padding: 10px;
-		border-width: 0 1px;
-	}
-
-	#post-body div.updated {
-		margin: 0;
-	}
-
-	#post-body-content {
-		position: relative;
-	}
-
-	#menu-management .menu-add-new abbr {
-		font-weight:bold;
-	}
-
-#nav-menu-footer {
-	border-width: 0 1px 1px 1px;
-	-moz-border-radius-bottomleft: 6px;
-	-webkit-border-bottom-left-radius: 6px;
-	-khtml-border-bottom-left-radius: 6px;
-	border-bottom-left-radius: 6px;
-	-moz-border-radius-bottomright: 6px;
-	-webkit-border-bottom-right-radius: 6px;
-	-khtml-border-bottom-right-radius: 6px;
-	border-bottom-right-radius: 6px;
+#menu-management .menu-add-new abbr {
+	font-weight:bold;
 }
 
 /* Menu Tabs */
@@ -155,13 +133,14 @@
 
 #menu-management .nav-tab {
 	margin-bottom: 0;
-	background: #f4f4f4;
-	font-weight: bold;
+	background: #fff;
 	border-color: #dfdfdf;
+	font-size: 14px;
+	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
 }
 
 #menu-management .nav-tab-active {
-	border-color:#ccc;
+	border-color: #dfdfdf;
 }
 
 #select-nav-menu-container {
@@ -199,7 +178,7 @@
 	float: right;
 }
 .customlinkdiv .howto input {
-	width: 210px;
+	width: 200px;
 }
 #nav-menu-theme-locations .howto select {
 	width: 100%;
@@ -298,20 +277,19 @@
 	margin-top: 13px;
 }
 .menu-item-handle {
-	border: 1px solid #E6E6E6;
+	border: 1px solid #dfdfdf;
 	position: relative;
 	padding-left: 10px;
 	height: auto;
 	width: 400px;
 	line-height: 35px;
 	text-shadow: 0 1px 0 #FFFFFF;
-	font-weight:bold;
 	overflow: hidden;
+	word-wrap: break-word;
 	border-radius: 6px;
 	-webkit-border-radius: 6px;
 	-moz-border-radius: 6px;
 	-khtml-border-radius: 6px;
-	word-wrap: break-word;
 }
 .menu-item-edit-active .menu-item-handle {
 	-moz-border-radius: 6px 6px 0 0;
@@ -335,6 +313,8 @@
 }
 
 .menu-item-handle .item-title {
+	font-size: 12px;
+	font-weight: bold;
 	padding: 7px 0;
 	line-height: 20px;
 	display:block;
@@ -395,7 +375,11 @@
 body.menu-max-depth-11 { min-width: 1280px !important; }
 
 /* Menu item controls */
-.item-type { text-transform: uppercase; font-size: 11px; color: #999999; padding-right: 10px; }
+.item-type {
+	font-size: 11px;
+	color: #999999;
+	padding-right: 10px;
+}
 .item-controls { font-size: 11px; position: absolute; right: 20px; top: -1px; }
 .item-controls a { text-decoration: none; }
 .item-controls a:hover { cursor: pointer; }
@@ -436,7 +420,7 @@
 	display:block;
 	width: 400px;
 	padding: 10px 0 10px 10px;
-	border: solid #E6E6E6;
+	border: solid #dfdfdf;
 	border-width: 0 1px 1px 1px;
 	-moz-border-radius: 0 0 6px 6px;
 	-webkit-border-bottom-right-radius: 6px;
@@ -506,7 +490,7 @@
 /* Major/minor publishing actions (classes) */
 .major-publishing-actions {
 	clear:both;
-	padding: 5px 10px;
+	padding: 5px 0;
 }
 .major-publishing-actions .publishing-action {
 	text-align: right;
@@ -547,12 +531,12 @@
 }
 
 .major-publishing-actions .form-invalid {
+	padding-left: 4px;
+	margin-left: -4px;
 	border-radius: 4px;
 	-webkit-border-radius: 4px;
 	-moz-border-radius: 4px;
 	-khtml-border-radius: 4px;
-	padding-left: 4px;
-	margin-left: -4px;
 }
 
 /* Clearfix */
Index: wp-admin/link-manager.php
===================================================================
--- wp-admin/link-manager.php	(revision 17796)
+++ wp-admin/link-manager.php	(working copy)
@@ -59,7 +59,9 @@
 
 <div class="wrap nosubsub">
 <?php screen_icon(); ?>
-<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
+<h2><?php
+echo esc_html( $title );
+favorite_actions( $current_screen );
 if ( !empty($_REQUEST['s']) )
 	printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( stripslashes($_REQUEST['s']) ) ); ?>
 </h2>
Index: wp-admin/admin-footer.php
===================================================================
--- wp-admin/admin-footer.php	(revision 17796)
+++ wp-admin/admin-footer.php	(working copy)
@@ -20,7 +20,7 @@
 <p id="footer-left" class="alignleft"><?php
 do_action( 'in_admin_footer' );
 $upgrade = apply_filters( 'update_footer', '' );
-echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?>
+echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> &bull; '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' &bull; '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?>
 </p>
 <p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
 <div class="clear"></div>
Index: wp-admin/themes.php
===================================================================
--- wp-admin/themes.php	(revision 17796)
+++ wp-admin/themes.php	(working copy)
@@ -71,15 +71,16 @@
 
 <div class="wrap"><?php
 screen_icon();
+
 if ( !is_multisite() ) : ?>
-<h2 class="nav-tab-wrapper">
-<a href="themes.php" class="nav-tab nav-tab-active"><?php echo esc_html( $title ); ?></a>
-	<?php if ( current_user_can('install_themes') ) : ?>
-<a href="<?php echo admin_url( 'theme-install.php'); ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a>
-	<?php endif;
+	<h2 class="nav-tab-wrapper">
+		<a href="themes.php" class="nav-tab nav-tab-active"><?php echo esc_html( $title ); ?></a><?php
+		if ( current_user_can('install_themes') ) :
+			?><a href="<?php echo admin_url( 'theme-install.php'); ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a><?php
+		endif;
 else : ?>
-<h2>
-<?php echo esc_html( $title ); ?>
+	<h2>
+		<?php echo esc_html( $title ); ?>
 <?php endif; ?>
 </h2>
 

