How to embed fonts in component textarea?

Hello there. I am working on this website, but i can’t figure out why i can’t embed my pixelfont in my textarea.

http://www.rvlt.com/shopfinder/

I read on the internet i had to do it with styles because the textarea is dynamically filled with content. So i wrote this code, but it doesnt work! :frowning:

// **************************************************************
//  Styles
// **************************************************************
var my_styles = new TextField.StyleSheet();
my_styles.setStyle("p", {fontFamily:'standard 07_53', color:'#FFFFFF', fontSize:'8px'});
textarea_ta.styleSheet = my_styles;
textarea_ta.embedFonts = true;

i hope you can help me!