/* CSS Document */

 body  {
height : auto;
background-image : url(bg.jpg);
background-repeat : repeat-x;
background-attachment : fixed;
margin-top : 0;
text-align : center;
margin-right : auto;
}
#general{
width:900px;
height:300px;
margin: 0 auto;
text-align:center;
position: absolute;
top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
width: 900 px; /* Definimos el ancho del objeto a centrar */
height: 300px; /* Definimos el alto del objeto a centrar */
margin-top: -150px; /* Restamos la mitad de la altura del objeto con un margin-top */
margin-left: -450px; /* Restamos la mitad de la anchura del objeto con un margin-left */
}

#copyright{
width:900px;
color:#000000;
height:20px;
text-align:center;
margin-top:5px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
}
