Złe wyświetlanie elementu w CSS

Witam.

Mam następujący problem. Zrobiłem “intro” do strony - http://www.davidebresadola.yoyo.pl. Problem polega na tym, że linki w divie#intro_next wyświetlają się nie tak jak ustaliłem w CSS, ale tak jak wyświetlają się w divie#text…

div#intro {

	width: 1024px;

	height: 630px;

	background-image: url(graphic/intro.jpg);

	border: solid thin black;

	margin: 0 auto;

	margin-top: 50px;

	margin-bottom: 50px;

}


div#intro_next {

	width: 200px;

	height: 50px;

	margin-top: 580px;

	color: white;

}


div#intro_next a:link a:visited {

	text-decoration: none;

	color: white;

	font-weight: bold;

	font-size: 25pt;

}


div#intro_next a:hover {

	color: #0099FF;

	font-weight: bold;

}


div#text {

	width: 550px;

	height: 600px;

	padding: 25px;

	background-image: url(graphic/background_text.png);

	float: left;

	margin-left: 100px;

	margin-top: 75px;

	text-align: justify;

	color: white;

	overflow: scroll;

	scrollbar-base-color: white;

	scrollbar-face-color: black;

	scrollbar-arrow-color: white;	

	font-face: Verdana, Tahoma, Inconsolata, Helvetica, Arial;

}


div#text a:link, a:visited {

	text-decoration: none;

	color: #0099FF;

	font-size: 10pt;

}


div#text a:hover {

	color: #0099FF;

	font-weight: bold;

}

jakbyś mógł mi podrzócić kod HTML to spróbuję rzócić na to okiem… tak z głowy to wydaje mi się że możesz mieć dwie definicje na ten sam obiekt i jest konflikt ale tego nie jestem w stanie powiedzieć do momentu gdy zobacze HTML :slight_smile:

pozdrawiam

div#intro_next a:link a:visited

chyba miało być

div#intro_next a:link, div#intro_next a:visited

Dzięki!