function getDoughnutStyle() {
	var res=[];
	res.push("<styles>");
	res.push("	<definition>");
	res.push("		<style name='ToolTipFont' type='font' font='tahoma' size='11' color='777777' isHTML='1' />");
	res.push("		<style name='LabelFont' type='font' font='dotum' size='12' color='333333' />");
	res.push("	</definition>");
	res.push("	<application>");
	res.push("		<apply toObject='TOOLTIP' styles='ToolTipFont' />");
	res.push("		<apply toObject='DataLabels' styles='LabelFont' />");
	res.push("	</application>");
	res.push("</styles>");
	return res.join("");
}