Index: /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.css
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.css	(revision 60)
+++ /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.css	(revision 60)
@@ -0,0 +1,60 @@
+body, td, input, select, textarea
+{
+	font-size: 12px;
+	font-family: Arial, Verdana, Sans-Serif;
+}
+
+body 
+{
+	background-color: #333;
+	color: #FFF;
+	margin:0;
+}
+
+#container 
+{
+	width:100%;
+	border:0;
+}
+
+#side 
+{
+	width:200px;
+	vertical-align:top;
+}
+
+#mainContent 
+{
+	background-color: #DDD;
+	color: #333;
+	padding: 0.8em 0.6em;
+}
+
+
+/*
+    The following are some sample styles used in the "Styles" toolbar command.
+    You should instead remove them, and include the styles used by the site
+    you are using the editor in.
+*/
+
+.Bold
+{
+	font-weight: bold;
+}
+
+.Title
+{
+	font-weight: bold;
+	font-size: 18px;
+	color: #cc3300;
+}
+
+.Code
+{
+	border: #8b4513 1px solid;
+	padding-right: 5px;
+	padding-left: 5px;
+	color: #000066;
+	font-family: 'Courier New' , Monospace;
+	background-color: #ff9933;
+}
Index: /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.html
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.html	(revision 60)
+++ /FCKeditor/branches/developers/alfonsoml/_samples/html/sample14.html	(revision 60)
@@ -0,0 +1,69 @@
+﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!-- @Packager.Header
+<FileDescription>
+	Sample page.
+</FileDescription>
+<Author name="Frederico Caldeira Knabben" email="www.fckeditor.net" />
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>FCKeditor - Sample</title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+	<meta name="robots" content="noindex, nofollow" />
+	<link href="sample14.css" rel="stylesheet" type="text/css" />
+	<script type="text/javascript" src="../../fckeditor.js"></script>
+</head>
+<body>
+<div id="xToolbarDiv"></div>
+	<h1>
+		FCKeditor - JavaScript - Sample 14
+	</h1>
+	<div>
+		This sample simulates a page with an embedded editor and the use of CSS features
+	</div>
+	<hr />
+<table id="container">
+	<tr>
+		<td id="side">
+			links<br>
+			links<br>
+			links<br>
+		</td>
+		<td id="mainContent">
+			<h2>Editing content</h2>
+			<p>Only the content on this cell can be edited, and it does use the new <em>Config.BodyId</em> setting to show the proper
+			background colors in the editor and the dropdown boxes instead of the dark one for the body.
+			</p>
+	<form action="sampleposteddata.asp" method="post" target="_blank">
+		<script type="text/javascript">
+<!--
+// Automatically calculates the editor base path based on the _samples directory.
+// This is usefull only for these samples. A real application should use something like this:
+// oFCKeditor.BasePath = '/fckeditor/' ;	// '/fckeditor/' is the default value.
+var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
+
+var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
+oFCKeditor.Config['EditorAreaCSS'] = sBasePath + '_samples/html/sample14.css' ;
+oFCKeditor.Config['ToolbarComboPreviewCSS'] = '' ;
+
+oFCKeditor.Config['BodyId'] = 'mainContent' ;
+oFCKeditor.Config['BodyClass'] = '' ;
+
+oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:xToolbarDiv' ;
+oFCKeditor.Config[ 'ToolbarCanCollapse' ] = false ;
+
+oFCKeditor.BasePath	= sBasePath ;
+oFCKeditor.Height	= 300 ;
+oFCKeditor.Value	= 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ;
+oFCKeditor.Create() ;
+//-->
+			</script>
+			<br />
+			<input type="submit" value="Submit" />
+		</form>
+
+		</td>
+	</tr>
+</table>
+</body>
+</html>
Index: /FCKeditor/branches/developers/alfonsoml/_samples/sampleslist.html
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/_samples/sampleslist.html	(revision 59)
+++ /FCKeditor/branches/developers/alfonsoml/_samples/sampleslist.html	(revision 60)
@@ -47,4 +47,5 @@
 						<option value="html/sample12.html">JavaScript : Sample 12 : Enter key behavior</option>
 						<option value="html/sample13.html">JavaScript : Sample 13 : Dinamically switching with a Textarea</option>
+						<option value="html/sample14.html">JavaScript : Sample 14 : Use of custom CSS</option>
 					</optgroup>
 					<optgroup label="&nbsp;">
