//*************************************************************************************************************************************
// This function fixes some of the styles for the careers pages. The problem is that all of these styles are embedded in the 
// application. If I were to overwrite them directly, then they would probably be overwritten on the next update. This solution 
// is portable. 
//*************************************************************************************************************************************
function fix_styles() { 
  if(document.getElementById('lstSBox1')) { 
    document.getElementById('lstSBox1').style.width = '250px';
    document.getElementById('lstSBox2').style.width = '250px';
	
    temp = document.getElementById('lstSBox2').style.fontSize + "\n";
    document.getElementById('lstSBox1').style.fontSize = '1em';
    document.getElementById('lstSBox2').style.fontSize = '1em';
    temp += document.getElementById('lstSBox2').style.fontSize + "\n";
  } // end if(document.getElementById('lstSBox1'))
        
  if(document.getElementById('CRCareers1_tblTableDetail')) { 
    document.getElementById('CRCareers1_tblTableDetail').style.width = 'auto';
  } // end if(document.getElementById('CRCareers1_tblTableDetail'))
        
  if(document.getElementById('CRCareers1_tblJobDescrDetail')) { 
    document.getElementById('CRCareers1_tblJobDescrDetail').style.width = 'auto';
  } // end if(document.getElementById('CRCareers1_tblJobDescrDetail'))
} // end function fix_styles()
//*************************************************************************************************************************************

window.onload = fix_styles;