	
	CKEDITOR.addStylesSet('editorstyles',[
		{name:'Title',element:'p',attributes:{style:'margin: 0; margin-bottom: 15px; font-size: 22px; color: #BA0101;'}},
		{name:'Topic',element:'p',attributes:{style:'margin-top: 18px; font-size:20px; color: #BA0101;'}},
		{name:'nTopic',element:'p',attributes:{style:'margin-top: 9px; font-size:20px; color: #BA0101;'}},
		{name:'Quote',element:'p',attributes:{style:'margin-top: 12px; font-size:18px; font-style: italic; line-height: 1.3em; color: #7E7E7E;'}}
	]);
	
	CKEDITOR.editorConfig = function( config ) {
	
		config.baseFloatZIndex = 21000;
		config.width = 630;
		config.resize_minWidth = 630;
		config.resize_maxWidth = 630;
		config.height = 630;
		config.removePlugins = 'resize';
		config.toolbarCanCollapse = true;
		config.stylesSet = 'editorstyles';
		config.contentsCss = "/theme/css/typography.css";
		config.baseHref = "http://zchat.stanserver.net/";
		config.toolbar =
			[
				['Undo','Redo'],
				['Bold','Italic','Strike'],
				['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
				['NumberedList','BulletedList','-','Outdent','Indent'],
				['Link','Unlink','-','Image'],
				['Table','SpecialChar','SpellChecker'],
				'/',
				['Styles','Format','Font','FontSize'],
				['TextColor','BGColor'],
				['RemoveFormat','-','Source']
			];
	
	};
	

