function cssStyle2DomStyle(sName) {
    return sName.replace(/^-{1}/g,'').replace(/-(\w{1})/g,function(m,p){
        return p.toUpperCase()
    })
}