Index: /CKEditor/branches/features/kama/_source/skins/kama/skin.js
===================================================================
--- /CKEditor/branches/features/kama/_source/skins/kama/skin.js	(revision 3589)
+++ /CKEditor/branches/features/kama/_source/skins/kama/skin.js	(revision 3590)
@@ -183,4 +183,15 @@
 			if ( editor.config.uiColor )
 				editor.setUiColor( editor.config.uiColor );
+
+			// Fix editor's width. HPadding and 100% width iframe issue.
+			if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
+			{
+				editor.on( 'mode', function( event )
+				{
+					var container = editor.getResizable();
+					editor.resize( container.$.offsetWidth-10, container.$.offsetHeight );
+					editor.removeListener( 'mode', arguments.callee );
+				});
+			}
 		}
 	};
