// =======================================
// (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 coldColor = "#003366";
var hotColor  = "#cc0000";
var coldColor2 = "#006699";
var hotColor2  = "#ff0000";
var coldColor3 = "#006699";
var hotColor3  = "#ff0000";
var motionPix = "7";
var motionPix2 = "0";
var motionPix3 = "0";
var fontface1 = "verdana, sans-serif";
var fontface2 = "arial, sans-serif";
var fontface3 = "arial, sans-serif";
var fontsize2 = "12";
var fontsize3 = "14";

// do not edit below this line

var a='<style>'+
'A.InstantLink:link {'+
'  font-family:'+fontface1+';'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+
'A.InstantLink:visited {'+
'  font-family:'+fontface1+';'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;}'+
'A.InstantLink:active {'+
'  font-family:'+fontface1+';'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+
'A.InstantLink:hover {'+
'  font-family:'+fontface1+';'+
'  color:'+hotColor+';'+
'  text-decoration:underline overline;'+
'  padding:0 0 0 '+motionPix+';'+
'  }'+
'</style>';

var b='<style>'+
'A.InstantLink2:link {'+
'  font-family:'+fontface2+';'+
'  font-size:'+fontsize2+';'+
'  color:'+coldColor2+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix2+' 0 0;'+
'  }'+
'A.InstantLink2:visited {'+
'  font-family:'+fontface2+';'+
'  font-size:'+fontsize2+';'+
'  color:'+coldColor2+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix2+' 0 0;}'+
'A.InstantLink2:active {'+
'  font-family:'+fontface2+';'+
'  font-size:'+fontsize2+';'+
'  color:'+coldColor2+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix2+' 0 0;'+
'  }'+
'A.InstantLink2:hover {'+
'  font-family:'+fontface2+';'+
'  font-size:'+fontsize2+';'+
'  color:'+hotColor2+';'+
'  text-decoration:underline overline;'+
'  padding:0 0 0 '+motionPix2+';'+
'  }'+
'</style>';

var c='<style>'+
'A.InstantLink3:link {'+
'  font-family:'+fontface3+';'+
'  font-size:'+fontsize3+';'+
'  color:'+coldColor3+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix3+' 0 0;'+
'  }'+
'A.InstantLink3:visited {'+
'  font-family:'+fontface3+';'+
'  font-size:'+fontsize3+';'+
'  color:'+coldColor3+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix3+' 0 0;}'+
'A.InstantLink3:active {'+
'  font-family:'+fontface3+';'+
'  font-size:'+fontsize3+';'+
'  color:'+coldColor3+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix3+' 0 0;'+
'  }'+
'A.InstantLink3:hover {'+
'  font-family:'+fontface3+';'+
'  font-size:'+fontsize3+';'+
'  color:'+hotColor3+';'+
'  text-decoration:underline overline;'+
'  padding:0 0 0 '+motionPix3+';'+
'  }'+
'</style>';

if (document.all || document.getElementById){
    document.write(a);
    document.write(b);
    document.write(c);
}

