function Stile(tipo, valore) {
	this.tipo=tipo;
	this.valore=valore;
}

Stile.prototype.toString=function (){
	return " " + this.tipo + '="' + this.valore + '" ';
}

