/* General parameters */
/*
COLORE sfondo:
blu net-it  sfondo       HTML: #336699; RGB: R G B ;

*/

body {
	background-color: #175F9A;
	margin-left: 0px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	padding: 0px 0px 0px 0px;
}

body,td,th {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	color: #FFFFFF;
}

b {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 13px;
	color: #FFFFFF;
}

td.dottedtopbottom {
	border-top-style: dotted;
	border-top-width: 1px;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	padding: 3px 0px 0px 0px;
}

td.dottedtop {
	border-top-style: dotted;
	border-top-width: 1px;
}


td.dottedbottom {
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}

td.dottedleft {
	border-left-style: dotted;
	border-left-width: 1px;
}

td.dottedright {
        border-right-style: dotted;
        border-right-width: 1px;
}


/*
definisce il comportamento dei link come si faceva nelle precedenti versioni di HTML
nel campo <body link="blue" etc.. etc..>
ATTENZIONE negli style sheet CSS2 le proprietà dell'elemento a si susseguono esattamente
link, visited, hover e active (per esempio active non può essere messo prima di hover)
*/

/*

a:link {
        color: blue;
        text-decoration: none;  
}

a:visited {
	color: purple;
	text-decoration: none;
}

a:hover {
	color: red;
	text-decoration: underline;
}

a:active {
	color: red;
}

*/