1<?xml version="1.0" encoding="UTF-8"?>
2<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
3  <Styles>
4    <Style ss:ID="s1">
5      <Font ss:Bold="1" ss:Color="#008000"/>
6      <NumberFormat ss:Format="0.00_ ;[Red]\-0.00\ "/>
7    </Style>
8    <Style ss:ID="s2">
9      <Font ss:Color="red"/>
10    </Style>
11    <Style ss:ID="s3">
12      <Font ss:Color="blue"/>
13      <NumberFormat ss:Format="yyyy/mm\-dd;@"/>
14    </Style>
15  </Styles>
16  <Worksheet ss:Name="Sheet1">
17    <Table ss:TopCell="2" ss:LeftCell="2" ss:DefaultColumnWidth="20" ss:ExpandedColumnCount="3">
18      <Column ss:StyleID="s1" ss:AutoFitWidth="1"/>
19      <Column ss:StyleID="s2"/>
20      <Column ss:StyleID="s3" ss:Index="3" ss:AutoFitWidth="1"/>
21      <Row ss:StyleID="s1">
22        <Cell ss:Index="2">
23          <Data ss:Type="String">Title</Data>
24        </Cell>
25      </Row>
26      <Row>
27        <Cell>
28          <Data ss:Type="Number">111</Data>
29        </Cell>
30        <Cell>
31          <Data ss:Type="String">aaaa</Data>
32        </Cell>
33        <Cell>
34          <Data ss:Type="DateTime">1999-04-01</Data>
35        </Cell>
36      </Row>
37      <Row>
38        <Cell>
39          <Data ss:Type="Number">2222</Data>
40        </Cell>
41        <Cell>
42          <Data ss:Type="String">bbbb</Data>
43        </Cell>
44        <Cell>
45          <Data ss:Type="DateTime">1999-04-02T00:00:00.000</Data>
46        </Cell>
47      </Row>
48    </Table>
49  </Worksheet>
50</Workbook>
51