// =======================================
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// 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 hotColor = "#6666CC"
var coldColor  = "#ff3300"
var boldness = "bold"

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

var a='<style>'+
'A.MainLink:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.MainLink:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.MainLink:active {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.MainLink:hover {'+
'  color:'+hotColor+';'+
'  font-weight:'+boldness+';'+
'  }'+
'</style>'

if (document.all || document.getElementById){
    document.write(a)
}
