Hola amigos tengo este estilo para todas mis tablas de mi  sistema
   
Código css:
Ver original- /* CSS Document */ 
-         td { 
-             font-family:verdana,arial; 
-             font-size:8pt; 
-             border-style:solid; 
-             border-color:666666; 
-             border-width:1px; 
-              
-              
-              
-         } 
-         .tabla{ 
-             width:450; 
-             height:600; 
-             background-color:ffffff; 
-             border-style:solid; 
-             border-color:666666; 
-             border-width:1px; 
-         } 
-         .titulo{ 
-             text-align:center;       
-             background-color:#990000; 
-             color:#FFFFFF; 
-             font-weight:bold; 
-             font-size:10pt; 
-          
-         } 
-                  
-         input[type=text] { 
-             border:1px solid #CCCCCC; 
-         } 
-         input.btn { 
-             padding:3px; 
-             color:#FFFFFF; 
-             background-color:#990000; 
-             border:1px solid #000000; 
-         } 
Bien para no poner en cada html exporto a mi index principal asi   
Código html:
Ver original- <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> 
- <meta name="description" content="ACHF" /> 
- <meta name="keywords" content="your,keywords,goes,here"/> 
-   
- <link rel="stylesheet" type="text/css" href="css/1024px.css" title="1024px style" media="screen,projection"/> 
- <link rel="stylesheet" type="text/css" href="css/miestilo.css"/> 
El problema que tengo es que en mi index principal tengo este codigo   
Código html:
Ver original- <?php include('cabecera.php');?> 
- <?php 
-             $modulo = $_GET['mod']; 
-             if (!empty($modulo)) { 
-                 $ruta = 'modulos/' . $modulo . '/'.$modulo.'.ctrl.php'; 
-                 if (file_exists($ruta)) { 
-                     include($ruta); 
-                 } else { 
-                     echo "ERROR 404: No existe el archivo"; 
-                 } 
-             } else { 
-               ?> 
-                 <table align="center" width="850" height="400" border="0"> 
-                        <h3 align="center" class="Estilo2">- Noticias Breves </h3>
 
-                           <?php  include('modulos/noticias/vistas/scroll.html.php');?>   
-                         <?php include('cuerpo.php'); ?> 
-            <?php 
-              
-                  
-             } 
- ?> 
- <?php include('pie.php');?> 
- </html 
Y aunque no llamo a la clase tabla para hacer mi estilo lo coloca y queda muy mal
OTRA COSA COMO PUEDO METER UNA IMAGEN AQUI PARA MOSTRARLES COMO QUEDA