function adjustCenter() {
    if (!document.getElementsByTagName) return false;
    if (!document.getElementById) return false;	
 
    var currentUrl = window.location.href;
    var candiadateUrl = "/candidatecenter";
    
    if (currentUrl.indexOf(candiadateUrl) != -1) {	
		document.write("<style>" + "\n");
		document.write("@import url(/associations/7667/files/stylesheets/careercenter_styles.css);" + "\n");
		document.write("</style>" + "\n");
    }
		
}

adjustCenter();