
// =======================================


// Set the coldColor for the link normal color
// Set the hotColor for the link mouseOver color
// Set the motionPix for how many pixels to move

var coldColor = "#C0C0C0"
var hotColor  = "#cccccc"
var motionPix = "0"

// do not edit below this line
// ======================================

var a='<style>'+
'A.InstantLink2:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  
'A.InstantLink2:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;}'+  
'A.InstantLink2:active {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  
'A.InstantLink2:hover {'+
'  color:'+hotColor+';'+
'  text-decoration:underline nooverline;'+
'  padding:0 0 0 '+motionPix+';'+
'  }'+
'</style>'
if (document.all || document.getElementById){
    document.write(a)
}
