Codice Xhtml:

codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
	
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Personal Example</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="../CSS/Main_Layout.css" />
<!--[if IE]>
		
		<link rel="stylesheet" type="text/css" href="../CSS/Layout(IE).css" />
		
<![endif]-->	
</head>

<body>
	
	<div id="Container">
		
		<div class="Header">
			
			[img]../IMAGES/JPG/Header.jpg[/img]
		
		</div>
			
		<div class="Navigation_Menu">
			[img]../IMAGES/JPG/Navigation_Menu7.jpg[/img]
			
		</div>
		
		<div class="Content">
				
				<div class="Content_News">
	
				
				</div>
		
		</div>
		
		<div class="Footer">
		
			[img]../IMAGES/JPG/Footer.jpg[/img]
			<p class="Copyright">Copyright ©2006 <span>ANIME VISION</span> all rights reserved | by Another-Life</p>
			
		</div>
	
	</div>

</body>
</html>
Codice Css:

codice:
html,body{
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #e3e2e0 /*url(../IMAGES/JPG/test.jpg) repeat-y  top center*/;
}

/***** CONTAINER *****/
#Container{
	position: relative;
	width: 764px;
	height: 100%;
	margin: 0 auto;
}
/***** FINE CONTAINER *****/

/***** HEADER *****/
.Header{
	width: 764px;
	height: 160px;
	margin: 0;
	padding: 0;
}
/***** FINE HEADER *****/

/***** NAVIGATION_MENU *****/
.Navigation_Menu{
	height: 41px;
	width: 764px;
	margin: 0 0 1px;
	padding: 0;
	/*border-bottom-style: ridge;
	border-bottom-color: #747474;
	border-bottom-width: 1px;*/
}
/***** FINE NAVIGATION_MENU *****/

/***** CONTENT *****/
.Content{
	width: 764px;
	height: 1050px;
	margin: 0;
	padding: 0;
	background-color: #f7f7f7;	
}
/****** FINE CONTENT *****/

/***** FOOTER *****/
.Footer{
	margin: 0;
	padding: 0;
	width: 764px;
	height: 34px;
	/*border-top-style: ridge;
	border-top-color: #747474;
	border-top-width: 1px;*/
}
.Copyright{
	color: #fff;
	font-weight: bold;
	position: absolute;
	padding-bottom: 11px;
	bottom: 0;
	margin: 0 auto;
	text-align: center;
}
span{
	font-family: Aharoni;
	color: silver;
	font-weight: bold; 
}

/*****FINE FOOTER ****/
Ho riscontrato alcuni problemi.Vedo di esporli uno per volta per non creare confusione.

Con opera il testo contenuto nella classe .Copyright ha un background grigio,e nel codice Css non ho dichiarato nulla di simile,come posso risolvere questo bug??

p.s: Con firefox non vi è alcun errore^^