Ciao,
sto provando la regole font-face per firefox e ie. Per il secondo fa usato il formato .EOT e sto provando ad inserirlo tramite if, ma non so perchè explorer non lo legge.

codice:
<style type="text/css" media="screen">
				
@font-face {
	font-family: 'Aller';
	src: url('Aller_Lt.ttf'); 
}

body {
    font-family: Aller, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #282828;
    font-size: 16px;
    line-height: 24px;
    background-image: url('bkg.jpg');
    margin-top: 30px;
    text-shadow: #FFFFFF 1px 1px 1px;
}

h1 {
    font-family: "Adobe Caslon Pro", Baskerville, Georgia, serif;
    font-size:49px;
    color: #800000;
    
}

		</style>  
        
<!--[if IE]>
        
<style type="text/css” media="screen"> 

@font-face{
font-family:'Aller';
src: url('Aller_Lt.eot');
}

</style>

<![endif]-->
questo è tutto quanto presente nell'header