Salve ragazzi, buona sera a tutti.
Avrei un piccolo problemino, sto creando una semplicissima pagina con un'immagine di sfondo e sotto 3 pulsanti cliccabili con effetto rollover. Il risultato è che riesco a visualizzare soltanto l'immagine di sfondo.

Ecco il codice
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type"content="text/html; charset=ISO-8859-1" />
  <title>Home negozio</title>
  <style type="text/css">
	body{margin:10%}
	#contenitore{width:700px;}
	#sfondo{width:auto; height:300px; background:url(http://www.gruppowebazar.com/rivoluz...ite/Banner.psd )}
	#bottoni{width:600px;height:100px}
	
	.menunavigazione a{text-decoration:none; height:100px; margin:0;}
	.menunavigazione li{display:inline}
	
	#contattaci:link, #contattaci:visited {background:url(http://www.gruppowebazar.com/rivoluz...viciriposo.jpg)center center no-repeat} 
	#contattaci:hover, #contattaci:focus, #contattaci:active {backgruond:url(http://www.gruppowebazar.com/rivoluz...viciattivo.jpg)center center no-repeat}
	
	#alcunilavori:link, #alcunilavori:visited{ background:url(http://www.gruppowebazar.com/rivoluz...voririposo.jpg)center center no-repeat} 
	#alcunilavori:hover, #alcunilavori:focus, #alcunilavori:active{ background:url(http://www.gruppowebazar.com/rivoluz...voriattivo.jpg)center center no-repeat}
	
	#feedback:link, #feedback:visited{ background:url(http://www.gruppowebazar.com/rivoluz...taciriposo.jpg)center center no-repeat} 
	#feedback:hover, #feedback:focus, #feedback:active{ background:url(http://www.gruppowebazar.com/rivoluz...taciattivo.jpg)center center no-repeat}	
  </style>
</head>

<body>
<div id="contenitore">
	<div id="sfondo"> </div>
	<div id="bottoni">
		<ul class="menunavigazione">
  			[*]
  			[*] 
  			[*] 
		[/list]
	</div>
</div>
</body>
</html>
Spero che qualcuno mi possa aiutare.
Grazie in anticipo!