Change font in dhtmlxEditor

I’m using the dhtmlxEditor and the only problem I have is that i’m not able to change the font family and the font size, i have tried with:

< div id="DescrizioneSinistro" style="width:100%; height:100px; background-color:#FFF; border:none; padding-left:-3px; font-family:Tahoma; font-size:10;"></div>

but nothing change, the font is ever Times New Roman 11 (I think).

How can i change the font?

The editor uses an iframe and font of the iframe document is Tahoma 10pt.

You may modify it as follows:

editor = new dhtmlXEditor("editorObj"); window.setTimeout(function(){ editor.edDoc.body.style.fontSize = "11px"; },1);