function importCSS(file_path){
	if( document.createStyleSheet ) {
		document.createStyleSheet(file_path);
	} else {
		var css=document.createElement("link");
		css.rel="stylesheet";
		css.href=file_path;
		document.getElementsByTagName("head")[0].appendChild(css);
	}
}