Index: wp-includes/link-template.php
===================================================================
--- wp-includes/link-template.php	(revision 12093)
+++ wp-includes/link-template.php	(working copy)
@@ -1716,7 +1716,7 @@
 			l=d.location,
 			e=encodeURIComponent,
 			u=f+'?u='+e(l.href)+'&t='+e(d.title)+'&s='+e(s)+'&v=4';
-			a=function(){if(!w.open(u,'t','toolbar=0,resizable=0,status=1,width=720,height=570'))l.href=u;};
+			a=function(){if(!w.open(u,'t','toolbar=0,resizable=1,scrollbars=1,status=1,width=720,height=570'))l.href=u;};
 			if (/Firefox/.test(navigator.userAgent)) setTimeout(a, 0); else a();
 			void(0)";
 
Index: wp-admin/press-this.php
===================================================================
--- wp-admin/press-this.php	(revision 12093)
+++ wp-admin/press-this.php	(working copy)
@@ -100,19 +100,19 @@
 $url = isset($_GET['u']) ? esc_url($_GET['u']) : '';
 $image = isset($_GET['i']) ? $_GET['i'] : '';
 
-if ( !empty($_GET['ajax']) ) {
-	switch ($_GET['ajax']) {
+if ( !empty($_REQUEST['ajax']) ) {
+	switch ($_REQUEST['ajax']) {
 		case 'video': ?>
 			<script type="text/javascript" charset="utf-8">
 			/* <![CDATA[ */
 				jQuery('.select').click(function() {
 					append_editor(jQuery('#embed-code').val());
-					jQuery('#extra_fields').hide();
-					jQuery('#extra_fields').html('');
+					jQuery('#extra-fields').hide();
+					jQuery('#extra-fields').html('');
 				});
 				jQuery('.close').click(function() {
-					jQuery('#extra_fields').hide();
-					jQuery('#extra_fields').html('');
+					jQuery('#extra-fields').hide();
+					jQuery('#extra-fields').html('');
 				});
 			/* ]]> */
 			</script>
@@ -192,13 +192,14 @@
 		 * @return string
 		 */
 		function get_images_from_uri($uri) {
+			$uri = preg_replace('/\/#.+?$/','', $uri);
 			if( preg_match('/\.(jpg|jpe|jpeg|png|gif)$/', $uri) && !strpos($uri,'blogger.com') )
 				return "'".html_entity_decode($uri)."'";
 			$content = wp_remote_fopen($uri);
 			if ( false === $content )
 				return '';
 			$host = parse_url($uri);
-			$pattern = '/<img ([^>]*)src=(\"|\')([^<>]+?\.(png|jpeg|jpg|jpe|gif)[^<>\'\"]*)(\2)([^>]*)\/*>/is';
+			$pattern = '/<img ([^>]*)src=(\"|\')([^<>\'\"]+)(\2)([^>]*)\/*>/is';
 			preg_match_all($pattern, $content, $matches);
 			if ( empty($matches[0]) )
 				return '';
@@ -215,15 +216,15 @@
 			}
 			return "'" . implode("','", $sources) . "'";
 		}
-		$url = urldecode($url);
+		$url = wp_kses(urldecode($url), null);
 		echo 'new Array('.get_images_from_uri($url).')';
-
 		break;
 
 	case 'photo_js': ?>
 		// gather images and load some default JS
 		var last = null
 		var img, img_tag, aspect, w, h, skip, i, strtoappend = "";
+		if(photostorage == false) {
 		var my_src = eval(
 			jQuery.ajax({
 		   		type: "GET",
@@ -249,7 +250,7 @@
 				strtoappend = '<?php _e('Unable to retrieve images or no images on page.'); ?>';
 			}
 		}
-
+		}
 		for (i = 0; i < my_src.length; i++) {
 			img = new Image();
 			img.src = my_src[i];
@@ -294,26 +295,12 @@
 			desc = jQuery('#this_photo_description').val();
 			src = jQuery('#this_photo').val();
 			pick(src, desc);
-			jQuery('#extra_fields').hide();
-			jQuery('#extra_fields').html('');
+			jQuery('#extra-fields').hide();
+			jQuery('#extra-fields').html('');
 			return false;
 		}
-
-		jQuery(document).ready(function() {
-			jQuery('#extra_fields').html('<div class="postbox"><h2>Photo <small id="photo_directions">(<?php _e("click images to select") ?>)</small></h2><ul id="actions"><li><a href="#" id="photo_add_url" class="thickbox button"><?php _e("Add from URL") ?> +</a></li></ul><div class="inside"><div class="titlewrap"><div id="img_container"></div></div><p id="options"><a href="#" class="close button"><?php _e('Cancel'); ?></a><a href="#" class="refresh button"><?php _e('Refresh'); ?></a></p></div>');
-			jQuery('.close').click(function() {
-				jQuery('#extra_fields').hide();
-				jQuery('#extra_fields').html('');
-			});
-			jQuery('.refresh').click(function() {
-						show('photo');
-					});
+			jQuery('#extra-fields').html('<div class="postbox"><h2>Add Photos <small id="photo_directions">(<?php _e("click images to select") ?>)</small></h2><ul class="actions"><li><a href="#" id="photo-add-url" class="thickbox button"><?php _e("Add from URL") ?> +</a></li></ul><div class="inside"><div class="titlewrap"><div id="img_container"></div></div><p id="options"><a href="#" class="close button"><?php _e('Cancel'); ?></a><a href="#" class="refresh button"><?php _e('Refresh'); ?></a></p></div>');
 			jQuery('#img_container').html(strtoappend);
-			jQuery('#photo_add_url').attr('href', '?ajax=photo_thickbox_url&height=200&width=500');
-			tb_init('#extra_fields .thickbox');
-
-
-		});
 		<?php break;
 }
 die;
@@ -328,17 +315,18 @@
 
 <?php
 	add_thickbox();
-	wp_enqueue_style('press-this');
-	wp_enqueue_style('press-this-ie');
+	wp_enqueue_style( 'press-this' );
+	wp_enqueue_style( 'press-this-ie');
 	wp_enqueue_style( 'colors' );
 	wp_enqueue_script( 'post' );
-	wp_enqueue_script('editor');
+	wp_enqueue_script( 'editor' );
 ?>
 <script type="text/javascript">
 //<![CDATA[
 addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
 var userSettings = {'url':'<?php echo SITECOOKIEPATH; ?>','uid':'<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>','time':'<?php echo time() ?>'};
 var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>', pagenow = 'press-this';
+var photostorage = false;
 //]]>
 </script>
 
@@ -376,11 +364,10 @@
 	}
 
 	function show(tab_name) {
-		jQuery('#extra_fields').html('');
-		jQuery('#extra_fields').show();
+		jQuery('#extra-fields').html('');
 		switch(tab_name) {
 			case 'video' :
-				jQuery('#extra_fields').load('<?php echo esc_url($_SERVER['PHP_SELF']); ?>', { ajax: 'video', s: '<?php echo esc_attr($selection); ?>'}, function() {
+				jQuery('#extra-fields').load('<?php echo esc_url($_SERVER['PHP_SELF']); ?>', { ajax: 'video', s: '<?php echo esc_attr($selection); ?>'}, function() {
 					<?php
 					$content = '';
 					if ( preg_match("/youtube\.com\/watch/i", $url) ) {
@@ -402,27 +389,50 @@
 					?>
 					jQuery('#embed-code').prepend('<?php echo htmlentities($content); ?>');
 				});
+				jQuery('#extra-fields').show();
 				return false;
 				break;
 			case 'photo' :
-				jQuery('#extra_fields').before('<p id="waiting"><img src="images/wpspin_light.gif" alt="" /> <?php echo esc_js( __( 'Loading...' ) ); ?></p>');
-				jQuery.ajax({
-					type: "GET",
-					cache : false,
-					url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
-					data: "ajax=photo_js&u=<?php echo urlencode($url)?>",
-					dataType : "script",
-					success : function() {
-						jQuery('#waiting').remove();
-					}
-				});
+				function setup_photo_actions() {
+					jQuery('.close').click(function() {
+						jQuery('#extra-fields').hide();
+						jQuery('#extra-fields').html('');
+					});
+					jQuery('.refresh').click(function() {
+						photostorage = false;
+						show('photo');
+					});
+					jQuery('#photo-add-url').attr('href', '?ajax=photo_thickbox_url&height=200&width=500');
+					tb_init('#extra-fields .thickbox');
+					jQuery('#waiting').hide();
+					jQuery('#extra-fields').show();
+				}
+				jQuery('#extra-fields').before('<div id="waiting"><img src="images/wpspin_light.gif" alt="" /> <?php echo esc_js( __( 'Loading...' ) ); ?></div>');
+				
+				if(photostorage == false) {
+					jQuery.ajax({
+						type: "GET",
+						cache : false,
+						url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
+						data: "ajax=photo_js&u=<?php echo urlencode($url)?>",
+						dataType : "script",
+						success : function(data) {
+							eval(data);
+							photostorage = jQuery('#extra-fields').html();
+							setup_photo_actions();
+						}
+					});
+				} else {
+					jQuery('#extra-fields').html(photostorage);
+					setup_photo_actions();
+				}
 				return false;
 				break;
 		}
 	}
 	jQuery(document).ready(function($) {
 		//resize screen
-		window.resizeTo(720,570);
+		window.resizeTo(720,540);
 		// set button actions
     	jQuery('#photo_button').click(function() { show('photo'); return false; });
 		jQuery('#video_button').click(function() { show('video'); return false; });
@@ -437,7 +447,7 @@
 		jQuery('#title').unbind();
 		jQuery('#publish, #save').click(function() { jQuery('#saving').css('display', 'inline'); });
 
-		$('#tagsdiv-post_tag, #categorydiv').children('h3').click(function(){
+		$('#tagsdiv-post_tag, #categorydiv, #categorydiv').children('h3, .handlediv').click(function(){
 			$(this).siblings('.inside').toggle();
 		});
 	});
@@ -449,7 +459,7 @@
 <div id="poststuff" class="metabox-holder">
 	<div id="side-info-column">
 		<div class="sleeve">
-			<h1 id="viewsite"><a class="button" href="<?php echo get_option('home'); ?>/" target="_blank"><?php bloginfo('name'); ?> &rsaquo; <?php _e('Press This') ?></a></span></h1>
+			<h1 id="viewsite"><a href="<?php echo get_option('home'); ?>/" target="_blank"><?php bloginfo('name'); ?> &rsaquo; <?php _e('Press This') ?></a></span></h1>
 
 			<?php wp_nonce_field('press-this') ?>
 			<input type="hidden" name="post_type" id="post_type" value="text"/>
@@ -461,6 +471,9 @@
 			<div class="photolist"></div>
 
 			<div id="submitdiv" class="stuffbox">
+				<div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
+					<br/>
+				</div>
 				<h3><?php _e('Publish') ?></h3>
 				<div class="inside">
 					<p>
@@ -476,10 +489,14 @@
 			</div>
 
 			<div id="categorydiv" class="stuffbox">
+				<div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
+					<br/>
+				</div>
 				<h3><?php _e('Categories') ?></h3>
 				<div class="inside">
 
 					<div id="categories-all" class="tabs-panel">
+						
 						<ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
 							<?php wp_category_checklist($post_ID, false) ?>
 						</ul>
@@ -499,6 +516,9 @@
 			</div>
 
 			<div id="tagsdiv-post_tag" class="stuffbox" >
+				<div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
+					<br/>
+				</div>
 				<h3><span><?php _e('Post Tags'); ?></span></h3>
 				<div class="inside">
 					<div class="tagsdiv" id="post_tag">
@@ -518,7 +538,6 @@
 			</div>
 		</div>
 	</div>
-
 	<div class="posting">
 		<?php if ( isset($posted) && intval($posted) ) { $post_ID = intval($posted); ?>
 		<div id="message" class="updated fade"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink( $post_ID); ?>"><?php _e('View post'); ?></a> | <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit post'); ?></a> | <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p></div>
@@ -529,11 +548,11 @@
 				<input name="title" id="title" class="text" value="<?php echo esc_attr($title);?>"/>
 			</div>
 		</div>
+		
+		<div id="extra-fields" style="display: none"></div>
 
-		<div id="extra_fields" style="display: none"></div>
-
 		<div class="postdivrich">
-			<ul id="actions">
+			<ul id="actions" class="actions">
 
 				<li id="photo_button">
 					Add: <?php if ( current_user_can('upload_files') ) { ?><a title="<?php _e('Insert an Image'); ?>" href="#">
@@ -573,4 +592,4 @@
 <?php do_action('admin_print_footer_scripts'); ?>
 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
 </body>
-</html>
+</html>
\ No newline at end of file
Index: wp-admin/css/press-this.css
===================================================================
--- wp-admin/css/press-this.css	(revision 12093)
+++ wp-admin/css/press-this.css	(working copy)
@@ -1 +1,495 @@
-body{font:13px "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;color:#333;margin:0;padding:0;}img{border:none;}#wphead{border-top:none;padding-top:4px;background:#444!important;}.tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0;}#poststuff #edButtonPreview,#poststuff #edButtonHTML{-moz-border-radius:3px 3px 0 0;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-style:solid;border-width:1px;cursor:pointer;display:block;height:18px;margin:0 5px 0 0;padding:0 5px 0;font-size:10px;line-height:18px;float:left;}.howto{margin-top:2px;margin-bottom:3px;font-size:11px;font-style:italic;display:block;}input.text{outline-color:-moz-use-text-color;outline-style:none;outline-width:medium;width:100%;}#message{-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}div#poststuff{margin:10px;}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;position:absolute;width:0;}#poststuff #edButtonPreview.active,#poststuff #edButtonHTML.active{display:none;}.posting{margin-right:212px;position:relative;left:0;}* html .posting{width:470px;}#side-info-column{float:right;width:200px;}#side-info-column .sleeve{padding-top:5px;}#poststuff .inside{font-size:11px;margin:8px;}#poststuff h2,#poststuff h3{font-size:12px;font-weight:bold;line-height:1;margin:0;padding:7px 9px;}#tagsdiv-post_tag h3,#categorydiv h3{cursor:pointer;}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px;}#TB_window{border:1px solid #333;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}.postbox,.stuffbox{margin-bottom: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;}#title,.tbtitle{-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border-style:solid;border-width:1px;font-size:1.7em;outline:none;padding:3px 4px;border-color:#dfdfdf;}.tbtitle{font-size:12px;padding:3px;}#title{width:97%;}.editor-container{-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #dfdfdf;background-color:#fff;}.postdivrich{position:relative;padding-top:25px;}#actions{float:right;margin:-19px 0 0;}#extra_fields #actions{clear:both;position:relative;right:0;margin:-24px 0 0;}#actions li{float:left;list-style:none;margin-right:10px;}#extra_fields .button{margin-right:5px;padding:3px 6px;border-radius:10px;-webkit-border-radius:10px;-khtml-border-radius:10px;-moz-border-radius:10px;}.photolist{margin-top:-10px;}#photo_saving{margin:0 8px 8px;vertical-align:middle;}#img_container{background-color:#fff;}#img_container_container{overflow:auto;}#extra_fields{margin-top:10px;position:relative;}#extra_fields .postbox{margin-bottom:5px;}#extra_fields .titlewrap{padding:0;overflow:auto;height:100px;}#img_container{position:relative;}#img_container a{display:block;float:left;overflow:hidden;vertical-align:center;}#img_container img,#img_container a{width:68px;height:68px;}#img_container img{border:none;background-color:#f4f4f4;cursor:pointer;}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative;}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px;}#embed-code{width:100%;height:98px;}#viewsite{padding:0;margin:0 0 20px 0;font-size:10px;clear:both;}#viewsite .button{margin:0;display:block;}.wp-hidden-children .wp-hidden-child{display:none;}#category-adder{padding:4px 0;}#category-adder h4{margin:0 0 8px;}#category-add input{width:94%;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;margin:1px;padding:3px;}#category-add select{width:70%;-x-system-font:none;border-style:solid;border-width:1px;font-family:"Lucida Grande","Bitstream Vera Sans",Verdana,Arial,sans-serif;font-size:12px;height:2em;line-height:20px;padding:2px;margin:1px;vertical-align:top;}#category-add input,#category-add-sumbit{width:auto;}#categorydiv ul,#linkcategorydiv ul{list-style:none;padding:0;margin:0;}#categorydiv ul.categorychecklist ul{margin-left:18px;}#categorydiv div.tabs-panel{height:140px;overflow:auto;}ul.categorychecklist li{margin:0;padding:0;line-height:19px;}.screen-reader-text{display:none;}.tagsdiv .newtag{margin-right:5px;}.jaxtag{clear:both;margin:0;}.tagadd{margin-left:3px;}.tagchecklist{margin-top:3px;margin-bottom:1em;font-size:12px;overflow:auto;}.tagchecklist strong{position:absolute;font-size:.75em;}.tagchecklist span{margin-right:.5em;margin-left:10px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default;}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute;}#content{margin:5px 0;padding:0 5px;border:0 none;height:365px;width:97%!important;}#saving{display:inline;vertical-align:middle;}.submit input,.button,.button-primary,.button-secondary,.button-highlighted,#postcustomstuff .submit input{font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;text-decoration:none;font-size:11px!important;line-height:16px;padding:2px 8px;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;}.button-primary{background:#21759B url(../images/button-grad.png) repeat-x scroll left top;border-color:#21759B;color:#fff;}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid;}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left;}.ac_over{cursor:pointer;}.ac_match{text-decoration:underline;}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px;}#TB_ajaxContent h3{margin-bottom:.25em;}.updated{margin:10px 0;padding:0;border-width:1px;border-style:solid;width:99%;}.updated p,.error p{margin:.6em 0;padding:0 .6em;}.error a{text-decoration:underline;}.updated a{text-decoration:none;padding-bottom:2px;}#post_status{margin-left:10px;margin-bottom:1em;display:block;}#footer{height:65px;display:block;width:640px;padding:10px 0 0 60px;margin:0;position:absolute;bottom:0;font-size:12px;}#footer p{margin:0;padding:7px 0;}#footer p a{text-decoration:none;}#footer p a:hover{text-decoration:underline;}.centered{text-align:center;}.hidden{display:none;}.postbox input[type="text"],.postbox textarea,.stuffbox input[type="text"],.stuffbox textarea{border-width:1px;border-style:solid;}.taghint{color:#aaa;margin:-17px 6px 0 0;visibility:hidden;}input.newtag ~ div.taghint{visibility:visible;}input.newtag:focus ~ div.taghint{visibility:hidden;}
\ No newline at end of file
+body {
+font: 13px "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
+color: #333;
+margin: 0;
+padding: 0;
+min-width: 675px;
+min-height: 400px;
+}
+img {
+border: none;
+}
+/* Header */
+#wphead {
+border-top: none;
+padding-top: 4px;
+background: #444 !important;
+}
+.tagchecklist span a {
+background: transparent url(../images/xit.gif) no-repeat 0 0;
+}
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML {
+-moz-border-radius: 3px 3px 0 0;
+-webkit-border-top-right-radius: 3px;
+-webkit-border-top-left-radius: 3px;
+-khtml-border-top-right-radius: 3px;
+-khtml-border-top-left-radius: 3px;
+border-top-right-radius: 3px;
+border-top-left-radius: 3px;
+border-style: solid;
+border-width: 1px;
+cursor: pointer;
+display: block;
+height: 18px;
+margin: 0 5px 0 0;
+padding: 0 5px 0;
+font-size: 10px;
+line-height: 18px;
+float: left;
+}
+.howto {
+margin-top: 2px;
+margin-bottom: 3px;
+font-size: 11px;
+font-style: italic;
+display: block;
+}
+input.text {
+outline-color: -moz-use-text-color;
+outline-style: none;
+outline-width: medium;
+width: 100%;
+}
+#message {
+-moz-border-radius: 6px;
+-khtml-border-radius: 6px;
+-webkit-border-radius: 6px;
+border-radius: 6px;
+}
+/* Editor/Main Column */
+div#poststuff {
+margin: 10px;
+}
+div.zerosize {
+border: 0 none;
+height: 0;
+margin: 0;
+overflow: hidden;
+padding: 0;
+width: 0;
+}
+#poststuff #edButtonPreview.active,
+#poststuff #edButtonHTML.active {
+display: none;
+}
+.posting {
+margin-right: 212px;
+position: relative;
+}
+#side-info-column {
+float: right;
+width: 200px;
+position: relative;
+right: 0;
+}
+#side-info-column .sleeve {
+padding-top: 5px;
+}
+#poststuff .inside {
+font-size: 11px;
+margin: 8px;
+}
+#poststuff h2,#poststuff h3 {
+font-size: 12px;
+font-weight: bold;
+line-height: 1;
+margin: 0;
+padding: 7px 9px;
+}
+#tagsdiv-post_tag h3,
+#categorydiv h3 {
+cursor: pointer;
+}
+h3.tb {
+text-shadow: 0 1px 0 #fff;
+font-weight: bold;
+font-size: 12px;
+margin-left: 5px;
+}
+#TB_window {
+border: 1px solid #333;
+-moz-border-radius: 6px;
+-khtml-border-radius: 6px;
+-webkit-border-radius: 6px;
+border-radius: 6px;
+}
+.postbox,
+.stuffbox {
+margin-bottom: 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;
+}
+.stuffbox:hover .handlediv {
+        background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -111px;
+}
+.handlediv {
+	float:right;
+	height:26px;
+	width:23px;
+}
+#title,
+.tbtitle {
+-moz-border-radius: 6px;
+-khtml-border-radius: 6px;
+-webkit-border-radius: 6px;
+border-radius: 6px;
+border-style: solid;
+border-width: 1px;
+font-size: 1.7em;
+outline: none;
+padding: 3px 4px;
+border-color: #dfdfdf;
+}
+.tbtitle {
+font-size: 12px;
+padding: 3px;
+}
+#title {
+width: 97%;
+}
+.editor-container {
+-moz-border-radius: 6px;
+-khtml-border-radius: 6px;
+-webkit-border-radius: 6px;
+border-radius: 6px;
+border: 1px solid #dfdfdf;
+background-color: #fff;
+}
+.postdivrich {
+padding-top: 25px;
+position: relative;
+}
+.actions {
+float: right;
+margin: -19px 0 0;
+}
+#extra-fields .actions {
+margin: -15px -5px 0 0;
+}
+.actions li {
+float: left;
+list-style: none;
+margin-right: 10px;
+}
+#extra-fields .button {
+margin-right: 5px;
+padding: 3px 6px;
+border-radius: 10px;
+-webkit-border-radius: 10px;
+-khtml-border-radius: 10px;
+-moz-border-radius: 10px;
+}
+/* Photo Styles */
+.photolist {
+margin-top: -10px;
+}
+#photo_saving {
+margin: 0 8px 8px;
+vertical-align: middle;
+}
+#img_container {
+background-color: #fff;
+}
+#img_container_container {
+overflow: auto;
+}
+#extra-fields {
+margin-top: 10px;
+position: relative;
+}
+#waiting {
+margin-top: 10px;
+}
+#extra-fields .postbox {
+margin-bottom: 5px;
+}
+#extra-fields .titlewrap {
+padding: 0;
+overflow: auto;
+height: 100px;
+}
+#img_container {
+}
+#img_container a {
+display: block;
+float: left;
+overflow: hidden;
+vertical-align: center;
+}
+#img_container img,
+#img_container a {
+width: 68px;
+height: 68px;
+}
+#img_container img {
+border: none;
+background-color: #f4f4f4;
+cursor: pointer;
+}
+#img_container a,
+#img_container a:link,
+#img_container a:visited {
+border: 1px solid #ccc;
+display: block;
+position: relative;
+}
+#img_container a:hover,
+#img_container a:active {
+border-color: #000;
+z-index: 1000;
+border-width: 2px;
+margin: -1px;
+}
+/* Video */
+#embed-code {
+width: 100%;
+height: 98px;
+}
+/* Submit Column */
+#viewsite {
+padding: 0;
+margin: 0 0 20px 5px;
+font-size: 10px;
+clear: both;
+}
+.wp-hidden-children
+.wp-hidden-child {
+display: none;
+}
+#category-adder {
+padding: 4px 0;
+}
+#category-adder h4 {
+margin: 0 0 8px;
+}
+#category-add input {
+width: 94%;
+font-family: Verdana,Arial,Helvetica,sans-serif;
+font-size: 13px;
+margin: 1px;
+padding: 3px;
+}
+#category-add select {
+width: 70%;
+-x-system-font: none;
+border-style: solid;
+border-width: 1px;
+font-family: "Lucida Grande","Bitstream Vera Sans",Verdana,Arial,sans-serif;
+font-size: 12px;
+height: 2em;
+line-height: 20px;
+padding: 2px;
+margin: 1px;
+vertical-align: top;
+}
+#category-add input,
+#category-add-sumbit {
+width: auto;
+}
+/* Categories */
+#categorydiv ul,
+#linkcategorydiv ul {
+list-style: none;
+padding: 0;
+margin: 0;
+}
+#categorydiv ul.categorychecklist ul {
+margin-left: 18px;
+}
+#categorydiv div.tabs-panel {
+height: 140px;
+overflow: auto;
+}
+ul.categorychecklist li {
+margin: 0;
+padding: 0;
+line-height: 19px;
+}
+/* Tags */
+.screen-reader-text {
+display: none;
+}
+.tagsdiv .newtag {
+margin-right: 5px;
+}
+.jaxtag {
+clear: both;
+margin: 0;
+}
+.tagadd {
+margin-left: 3px;
+}
+.tagchecklist {
+margin-top: 3px;
+margin-bottom: 1em;
+font-size: 12px;
+overflow: auto;
+}
+.tagchecklist strong {
+position: absolute;
+font-size: .75em;
+}
+.tagchecklist span {
+margin-right: .5em;
+margin-left: 10px;
+display: block;
+float: left;
+font-size: 11px;
+line-height: 1.8em;
+white-space: nowrap;
+cursor: default;
+}
+.tagchecklist span a {
+margin: 6px 0 0 -9px;
+cursor: pointer;
+width: 10px;
+height: 10px;
+display: block;
+float: left;
+text-indent: -9999px;
+overflow: hidden;
+position: absolute;
+}
+#content {
+margin: 5px 0;
+padding: 0 5px;
+border: 0 none;
+height: 365px;
+width: 97% !important;
+}
+/* Submit */
+#saving {
+display: inline;
+vertical-align: middle;
+}
+.submit input,
+.button,
+.button-primary,
+.button-secondary,
+.button-highlighted,
+#postcustomstuff .submit input {
+font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
+text-decoration: none;
+font-size: 11px !important;
+line-height: 16px;
+padding: 2px 8px;
+cursor: pointer;
+border-width: 1px;
+border-style: solid;
+-moz-border-radius: 11px;
+-khtml-border-radius: 11px;
+-webkit-border-radius: 11px;
+border-radius: 11px;
+}
+.button-primary {
+background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
+border-color: #21759B;
+color: #fff;
+}
+.ac_results {
+padding: 0;
+margin: 0;
+list-style: none;
+position: absolute;
+z-index: 10000;
+display: none;
+border-width: 1px;
+border-style: solid;
+}
+.ac_results li {
+padding: 2px 5px;
+white-space: nowrap;
+text-align: left;
+}
+.ac_over {
+cursor: pointer;
+}
+.ac_match {
+text-decoration: underline;
+}
+#TB_ajaxContent #options {
+position: absolute;
+top: 20px;
+right: 25px;
+padding: 5px;
+}
+#TB_ajaxContent h3 {
+margin-bottom: .25em;
+}
+.updated {
+margin: 10px 0;
+padding: 0;
+border-width: 1px;
+border-style: solid;
+width: 99%;
+}
+.updated p,
+.error p {
+margin: 0.6em 0;
+padding: 0 0.6em;
+}
+.error a {
+text-decoration: underline;
+}
+.updated a {
+text-decoration: none;
+padding-bottom: 2px;
+}
+#post_status {
+margin-left: 10px;
+margin-bottom: 1em;
+display: block;
+}
+/* Footer */
+#footer {
+height: 65px;
+display: block;
+width: 640px;
+padding: 10px 0 0 60px;
+margin: 0;
+position: absolute;
+bottom: 0;
+font-size: 12px;
+}
+#footer p {
+margin: 0;
+padding: 7px 0;
+}
+#footer p a {
+text-decoration: none;
+}
+#footer p a:hover {
+text-decoration: underline;
+}
+/* Utility Classes */
+.centered {
+text-align: center;
+}
+.hidden {
+display: none;
+}
+.postbox input[type="text"],
+.postbox textarea,
+.stuffbox input[type="text"],
+.stuffbox textarea {
+border-width: 1px;
+border-style: solid;
+}
+/* tag hints */
+.taghint {
+color: #aaa;
+margin: -17px 0 0 7px;
+visibility: hidden;
+}
+input.newtag ~ div.taghint {
+visibility: visible;
+}
+input.newtag:focus ~ div.taghint {
+visibility: hidden;
+}
\ No newline at end of file
