    function mOverWhiteBold(obj) {
      obj.style.color = '#ffffff';
      obj.style.fontWeight = "bold";
      obj.style.textDecoration = "none";
    }
    
    function mOutWhite(obj) {
       obj.style.color = '#ffffff';
       obj.style.fontWeight = "normal";
       obj.style.textDecoration = "none";
    }
     
    function mOverGreenLight(obj) {
       obj.style.color = '#d4ebcd';
       obj.style.textDecoration = "none";
    }
       
    function mOutGreen(obj) {
       obj.style.color = '#006633';
       obj.style.textDecoration = "none";
    }
   
    function mOverOrange(obj) {
       obj.style.color = '#ffcc7b';
       obj.style.textDecoration = "none";
    }
    
    function mOutBlack(obj) {
       obj.style.color = '#000000';
       obj.style.textDecoration = "none";
    }