<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:annotation>
			<xs:documentation>General HTML Text Format stuff</xs:documentation>
	</xs:annotation>
	<xs:element name="b"/>
	<xs:element name="strong"/>
	<xs:element name="strike"/>
	<xs:element name="i"/>
	<xs:element name="u"/>
	<xs:element name="p"/>
	<xs:element name="br"/>
	<xs:element name="ul"/>
	<xs:element name="ol"/>
	<xs:element name="li"/>
	<xs:element name="a">
		<xs:complexType mixed="true">
			<xs:attribute name="href" type="xs:anyURI"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>
			<xs:attribute name="target" type="xs:string"/>
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="name" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>			
		</xs:complexType>
	</xs:element>
	<xs:element name="font">
		<xs:complexType mixed="true">
			<xs:attribute name="face" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="size" type="xs:string"/>
			<xs:attribute name="pointsize" type="xs:string"/>
			<xs:attribute name="color" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="div">
		<xs:complexType mixed="true">
			<xs:attribute name="align" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="span">
		<xs:complexType mixed="true">
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="blockquote">
		<xs:complexType mixed="true">
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="B"/>
	<xs:element name="STRONG"/>
	<xs:element name="STRIKE"/>
	<xs:element name="I"/>
	<xs:element name="U"/>
	<xs:element name="P"/>
	<xs:element name="BR"/>
	<xs:element name="UL"/>
	<xs:element name="OL"/>
	<xs:element name="LI"/>
	<xs:element name="A">
		<xs:complexType mixed="true">
			<xs:attribute name="href" type="xs:anyURI"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>
			<xs:attribute name="target" type="xs:string"/>
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="name" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="FONT">
		<xs:complexType mixed="true">
			<xs:attribute name="face" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="size" type="xs:string"/>
			<xs:attribute name="pointsize" type="xs:string"/>
			<xs:attribute name="color" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="DIV">
		<xs:complexType mixed="true">
			<xs:attribute name="align" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="class" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="SPAN">
		<xs:complexType mixed="true">
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="BLOCKQUOTE">
		<xs:complexType mixed="true">
			<xs:attribute name="class" type="xs:string"/>			
			<xs:attribute name="id" type="xs:string"/>
			<xs:attribute name="style" type="xs:string"/>
			<xs:attribute name="dir" type="xs:string"/>
			<xs:attribute name="title" type="xs:string"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="html" type="htmlText"/>
	<xs:complexType name="htmlText" mixed="true">
		<xs:choice minOccurs="0" maxOccurs="unbounded">
			<xs:element ref="b"/>
			<xs:element ref="strong"/>
			<xs:element ref="strike"/>
			<xs:element ref="i"/>
			<xs:element ref="u"/>
			<xs:element ref="p"/>
			<xs:element ref="br"/>
			<xs:element ref="ul"/>
			<xs:element ref="ol"/>
			<xs:element ref="li"/>
			<xs:element ref="a"/>
			<xs:element ref="font"/>
			<xs:element ref="div"/>
			<xs:element ref="span"/>
			<xs:element ref="blockquote"/>
			<xs:element ref="B"/>
			<xs:element ref="STRONG"/>
			<xs:element ref="STRIKE"/>
			<xs:element ref="I"/>
			<xs:element ref="U"/>
			<xs:element ref="P"/>
			<xs:element ref="BR"/>
			<xs:element ref="UL"/>
			<xs:element ref="OL"/>
			<xs:element ref="LI"/>
			<xs:element ref="A"/>
			<xs:element ref="FONT"/>
			<xs:element ref="DIV"/>
			<xs:element ref="SPAN"/>
			<xs:element ref="BLOCKQUOTE"/>			
		</xs:choice>
	</xs:complexType>
</xs:schema>

