salve a tutti.. ho creato questa semplice pagina di codice:

codice:
<html>
<head>
<title>Registrazione</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>

<div align="center" valign="middle">

<table width="291" height="145" border="1" bordercolor="#ECD9C4">
  <tr>
    <td width="281" align="center" valign="middle" bgcolor="#FEFDFA">
	
<?php

include ("functions.php");

if (isset($name) && isset($nick) && isset($pass))
	 {
     add_db($name, $nick, $pass);
	 }
else {
     reg_form();
     }
	 
?>

</td>
  </tr>
</table>

</div>

</body>
</html>
Il problema è che la tabella con IE mi si vede bene con il bordino marrone e tutti i colori giusti, su FireFox invece è come se la tabella non avesse nessuno stile..

cosa devo modificare???