<!-- File STYLE.CSS -->

<!-- Link: stile di default -->
A:link
{
	color:white;
	text-decoration:none;
}

A:visited
{
	color:white;
	text-decoration:none;
}

A:hover
{
	text-decoration:underline;
	color:yellow;
	font-weight: bold;
}

<!-- Link: sfondo blu -->
A:hover.sfondo
{
	background:#2e3192;
}

<!-- Link: blu con rosso/giallo -->
A:link.whitebackgroud
{
	color:#2e3192;
	text-decoration:none;
}

A:visited.whitebackgroud
{
	color:#2e3192;
	text-decoration:none;
}

A:hover.whitebackgroud
{
	text-decoration:underline;
	color:yellow;
	font-weight: bold;
	background:red;
}

<!-- Link: verde -->
A:link.elencopiante
{
	color:green;
	text-decoration:none;
}

A:visited.elencopiante
{
	color:green;
	text-decoration:none;
}

A:hover.elencopiante
{
	text-decoration:underline;
	color:white;
	font-weight: normal;
	background:green;
}

<!-- Link: invisibile -->
A:link.invisibile
{
	color:green;
	text-decoration:none;
	font-weight: bold;
}

A:visited.invisibile
{
	color:green;
	text-decoration:none;
	font-weight: bold;
}

A:hover.invisibile
{
	text-decoration:none;
	color:green;
	font-weight: bold;
}



h1{font-size:18px; font-family:"arial narrow,arial"; color:"#0000ff"}
h2{font-size:14px; font-family:"arial narrow,arial"; color:"#0000ff"}

body
{
	font-size:12px;
	font-family:"arial,arial narrow";
	color:"#ffffff";

	scrollbar-face-color: #ffffff;
	scrollbar-shadow-color: #2e3192;
	scrollbar-highlight-color: #2e3192;
	scrollbar-3dlight-color: #2e3192;
	scrollbar-darkshadow-color: #2e3192;
	scrollbar-track-color: #52b148;
	scrollbar-arrow-color: #2e3192;

}

