Represent the Cell Properties within a Cell which is used within a Tabe resp. a Row.
Inheritance: IProperty, IHtmlStyle
		/// <summary>
		/// Creates the cell properties.
		/// </summary>
		/// <param name="style">The style.</param>
		/// <param name="propertyNode">The property node.</param>
		/// <returns></returns>
		private CellProperties CreateCellProperties(IStyle style, XmlNode propertyNode)
		{
			CellProperties cellProperties		= new CellProperties(style as CellStyle);
			cellProperties.Node					= propertyNode;

			return cellProperties;
		}