Went a bit overboard on the utility functions
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
index 053a730..401c3ea 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
@@ -40,7 +40,6 @@
     {
         import org.apache.royale.html.util.addElementToWrapper;
         import org.apache.royale.utils.CSSUtils;
-        import org.apache.royale.utils.html.getStyle;
     }
 
 	/**
@@ -416,7 +415,7 @@
             if (!isNaN(_explicitWidth))
                 return _explicitWidth;
             var pixels:Number;
-            var strpixels:String = getStyle(this).width as String;
+            var strpixels:String = element.style.width as String;
             if(strpixels == null)
                 pixels = NaN;
             else
@@ -512,7 +511,7 @@
             if (!isNaN(_explicitHeight))
                 return _explicitHeight;
             var pixels:Number;
-            var strpixels:String = getStyle(this).height as String;
+            var strpixels:String = element.style.height as String;
             if(strpixels == null)
                 pixels = NaN;
             else
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/css2/Cursors.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/css2/Cursors.as
index 371e109..91de6da 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/css2/Cursors.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/css2/Cursors.as
@@ -38,10 +38,6 @@
     COMPILE::JS
     {
         import org.apache.royale.core.WrappedHTMLElement;
-        import org.apache.royale.utils.html.getStyle;
-        import org.apache.royale.core.ElementWrapper;
-        import org.apache.royale.utils.html.getStyle;
-        import org.apache.royale.core.ElementWrapper;
     }
 
     /**
@@ -104,7 +100,6 @@
          *  @playerversion Flash 10.2
          *  @playerversion AIR 2.6
          *  @productversion Royale 0.0
-         *  @royaleignorecoercion org.apache.royale.core.ElementWrapper
          */
 		public static function getCursor(obj:IRenderedObject):String
 		{
@@ -117,13 +112,12 @@
             }
             COMPILE::JS
             {
-                return getStyle(obj as ElementWrapper).cursor;
+                return obj.element.style.cursor;
             }
 		}
 
         /**
          *  @private
-         * @royaleignorecoercion org.apache.royale.core.ElementWrapper
          */
 		public static function setCursor(obj:IRenderedObject, cursor:String):void
 		{
@@ -182,7 +176,7 @@
             }
             COMPILE::JS
             {
-                getStyle(obj as ElementWrapper).cursor = cursor;
+                obj.element.style.cursor = cursor;
             }
 
 		}