<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="*|/"><xsl:apply-templates/></xsl:template>

<xsl:template match="text()|@*"><xsl:value-of select="."/></xsl:template>

<xsl:template match="/"><HTML xmlns:v="urn:schemas-microsoft-com:vml">
  <HEAD>
    <TITLE>ImageTiter Calibration Graph</TITLE>
    <STYLE>

	v\:* { behavior: url(#default#VML); }
	p.Chart {position=absolute; font-size=8pt; font-family="times"; color=black; text-align=right}
	
    </STYLE>
  </HEAD>
  <BODY>
    <v:group style="position:absolute;height=420pt; width=400pt" coordsize="3200,3200">
    <v:rect style="position:absolute; height=4200; width=4000;" fillcolor="white">
    <v:shadow on="true" offset="4pt,3pt" color="silver"></v:shadow>
    </v:rect>

    <v:shape style="position:absolute;left:300;top:200;height=2800; width=3400;" strokeweight="0.7pt">
    <v:path v="   M 0,0 L 3200,0 X   M 0,100 L 3200, 100X   M 0,200 L 3200, 200X   M 0,300 L 3200, 300X   M 0,400 L 3200, 400X   M 0,500 L 3200, 500X   M 0,600 L 3200, 600X   M 0,700 L 3200, 700X   M 0,800 L 3200, 800X   M 0,900 L 3200, 900X   M 0,1000 L 3200, 1000X   M 0,1100 L 3200, 1100X   M 0,1200 L 3200, 1200X   M 0,1300 L 3200, 1300X   M 0,1400 L 3200, 1400X   M 0,1500 L 3200, 1500X   M 0,1600 L 3200, 1600X   M 0,1700 L 3200, 1700X   M 0,1800 L 3200, 1800X   M 0,1900 L 3200, 1900X   M 0,2000 L 3200, 2000X   M 0,2100 L 3200, 2100X   M 0,2200 L 3200, 2200X   M 0,2300 L 3200, 2300X   M 0,2400 L 3200, 2400X   M 0,2500 L 3200, 2500X   M 0,2600 L 3200, 2600X   M 0,2700 L 3200, 2700X   M 0,2800 L 3200, 2800X   M 0,2900 L 3200, 2900X   M 0,3000 L 3200, 3000X   M 0,3100 L 3200, 3100X   M 0,3200 L 3200, 3200X   M 0,0 L 0,3200 X   M 400,0 L 400,3200 X   M 800,0 L 800,3200 X   M 1200,0 L 1200,3200 X   M 1600,0 L 1600,3200 X   M 2000,0 L 2000,3200 X   M 2400,0 L 2400,3200 X   M 2800,0 L 2800,3200 X   M 3200,0 L 3200,3200X  E"></v:path>
      
    <xsl:apply-templates/>
	
	</v:shape>
	</v:group>
  </BODY>
</HTML></xsl:template>

<xsl:template match="POINT"><xsl:apply-templates/>
<xsl:element name="v:rect">
<xsl:attribute name="style">position:absolute;margin-top: 2975;margin-left: 275;left: expression(<xsl:value-of select="@index" /> * 425);top: expression(-<xsl:value-of select="@actual" /> * 82);width:50;height:50;</xsl:attribute>
<xsl:attribute name="fillcolor">blue</xsl:attribute>
</xsl:element></xsl:template>

</xsl:stylesheet>
