Index: /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js	(revision 4286)
+++ /CKEditor/branches/features/pasting/_source/plugins/pastefromword/plugin.js	(revision 4287)
@@ -214,7 +214,10 @@
 					[
 						[ 'text-indent' ],
-						[ 'margin-left', null, function( value )
-						{
-							// Resolve indent level from 'margin-left' style.
+						// Resolve indent level from 'margin-left' style.
+						[ /^margin(:?-left)?$/, null, function( value )
+						{
+							// Deal with short-hand form. 
+							var values = value.split( ' ' );
+							value = values[ 3 ] || values[ 1 ] || values [ 0 ];
 							attrs[ 'cke:indent' ] = parseInt( value );
 						} ]
