(function($){$.getCssFromClass=function(className,cssProperty,isForFlash){C4.OO.insistTypeof([String],className);
C4.OO.insistTypeof([String],cssProperty);
C4.OO.insistTypeof([Boolean],isForFlash);
var _cssValue=jQuery("body").append('<div id="tempCssGetterDiv" class="'+className+'" style="display:none;" />').find("#tempCssGetterDiv").css(cssProperty);
jQuery("#tempCssGetterDiv").remove();
if(cssProperty.toLowerCase().indexOf("color")>-1){_cssValue=C4.Util.colorToHex(_cssValue);
if(isForFlash){_cssValue="0x"+_cssValue.replace("#","")
}}return _cssValue
}
})(jQuery);