Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7677)
+++ /CKEditor/trunk/CHANGES.html	(revision 7678)
@@ -38,5 +38,5 @@
 			CKEditor 3.6.6 (SVN)</h3>
 	<p>
-			New features:</p>
+			Fixed issues:</p>
 	<ul>
 		<li><a href="http://dev.ckeditor.com/ticket/9483">#9483</a> : [IE10] Fixed script error on float panel opening.</li>
@@ -45,9 +45,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7533">#7533</a>, <a href="http://dev.ckeditor.com/ticket/9439">#9439</a> : Fixed SCAYT issues with setData().</li>
 		<li><a href="http://dev.ckeditor.com/ticket/9167">#9167</a> : Improper HTML transformations happening on specific cases.</li>
-	</ul>
-	<p>
-			Fixed issues:</p>
-	<ul>
-		<li></li>
+		<li><a href="http://dev.ckeditor.com/ticket/9553">#9553</a> : Properly handle dash values in the style field of dialogs.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/dialogadvtab/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/dialogadvtab/plugin.js	(revision 7677)
+++ /CKEditor/trunk/_source/plugins/dialogadvtab/plugin.js	(revision 7678)
@@ -138,5 +138,5 @@
 						getStyle : function( name, defaultValue )
 						{
-							var match = this.getValue().match( new RegExp( name + '\\s*:\\s*([^;]*)', 'i') );
+							var match = this.getValue().match( new RegExp( '(?:^|;)\\s*' + name + '\\s*:\\s*([^;]*)', 'i' ) );
 							return match ? match[ 1 ] : defaultValue;
 						},
