
var coldColor = "#000000"
var hotColor  = "#08A563"
var a='<style>'+
'a.cambio:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  font-family:verdana;'+
'  font-size:7pt;'+
'  font-weight:700; }'+  
  
'a.cambio:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  font-family:verdana;'+
'  font-size:7pt;'+
'  font-weight:700; }'+   
'a.cambio:active {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  font-family:verdana;'+
'  font-size:7pt;'+
'  font-weight:700; }'+  
'a.cambio:hover {'+
'  color:'+hotColor+';'+
'  text-decoration:none;'+
'  font-family:verdana;'+
'  font-size:7pt;'+
'  font-weight:700; }'+
'</style>'

if (document.all || document.getElementById){
    document.write(a)
}
