BODY {  SCROLLBAR-FACE-COLOR: #6189AC;
SCROLLBAR-HIGHLIGHT-COLOR: #6189AC;
SCROLLBAR-SHADOW-COLOR: #6189AC; 
SCROLLBAR-3DLIGHT-COLOR: #A9CAE6; 
SCROLLBAR-ARROW-COLOR: #000000; 
SCROLLBAR-TRACK-COLOR: #6189AC; 
SCROLLBAR-DARKSHADOW-COLOR: #000000; 

FONT-SIZE: 10px; COLOR: #6189AC; FONT-FAMILY: Verdana,sans-serif;
}

A {
	FONT-SIZE: 10px; COLOR: #6189AC; FONT-FAMILY: Verdana,sans-serif;
}
TD {
	FONT-SIZE: 10px; COLOR: #6189AC; FONT-FAMILY: Verdana,sans-serif;
}
A:link {
	COLOR: #6189AC; TEXT-DECORATION: none; FONT-FAMILY: Verdana,sans-serif;
}
A:visited {
	COLOR: #6189AC; TEXT-DECORATION: none; FONT-FAMILY: Verdana,sans-serif;
}
A:active {
	COLOR: #6189AC; TEXT-DECORATION: none; FONT-FAMILY: Verdana,sans-serif;
}
A:hover {
	COLOR: #A9CAE6; TEXT-DECORATION: none; FONT-FAMILY: Verdana,sans-serif;
}
A.menulink {
display: block;
width: 120px;
text-align: left;
text-decoration: none;
font-family:verdana;
font size: 11px;
color: #697A99;
BORDER: none;
border: solid 1px #F8F8F8;
}

A.menulink:hover {
text-align: left;
text-decoration: none;
font-family:verdana;
font size: 11px;
color: #697A9E;
border: solid 1px #EBEBEB;
background-color:#FFFFFF;
}

textarea, input{

border: 1 solid #64798C;
background:#FCFCFC; 
font-family:Arial; 
color: #64798C; 
font-size: 9pt; 
background-image: url(images/input.gif); 
background-attachment:fixed;

}

//CODICE menu HTML//

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	}

ul li {
	position: relative;
	}

li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	}

ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 1px solid #ccc;
	}

li:hover ul, li.over ul { 
	display: block; }

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
