setStyle - bitmap font

Hi,
The bitmap font doesn’t show up to me. Others common fonts do. Can anyone help me, where Is the mistake?
Thank you.

[COLOR=DarkSlateBlue] dynamic class MenuItem extends MovieClip
{
var createTextField, Caption, parent, Node, getBounds;
function MenuItem() {
super();
this.Caption = this.createTextField(“Caption”, 1, 0, 0, 100, 20);
this.Caption.autoSize = “left”;
this.Caption.html = true;
var Register_3
= new TextField.StyleSheet();
Register_3_.setStyle(“body”, {color:"#FFFFFF", fontSize:“8px”, fontFamily:“standard 07_57”});
Register_3_.setStyle(“a”, {color:"#FFFFFF", fontSize:“8px”, fontFamily:“standard 07_57”});
Register_3_.setStyle(“a:hover”, {color:"#DEEF8F", fontSize:“8px”, fontFamily:“standard 07_57”});
this.Caption.selectable = false;
this.Caption.styleSheet = Register_3_;
this.Caption.embedFonts = true;

}
function onLoad() {
}
function selectThis() {
	if (this.selected){
		return undefined;
	}
	this._parent.SelectedWork.selected = false;
	this._parent.SelectedWork.Caption.textColor = 16777215;
	this._parent.SelectedWork = this;
	this.selected = true;
	this.Caption.textColor = 14610319;
	this._parent._parent._parent.Content.LoadContent(t  his.Node);
}
function onMouseDown() {
	var Register_2_ = this.getBounds(_level0);
	Register_2_.xMax = (Register_2_.xMin + this.Caption.textWidth) + 3;
	Register_2_.yMax = (Register_2_.yMin + this.Caption.textHeight) + 3;

if (((_level0.xmouse >= Register_2.xMin && _level0.xmouse <= Register_2.xMax) && _level0.ymouse >= Register_2.yMin) && (_level0.ymouse <= Register_2.yMax)){
this.selectThis();
}
}
var selected = false;
}[/COLOR]