<?xml version='1.0' encoding='UTF-8'?>
<!-- Created by Charles Hoffman, CPA, 2007-01-01 -->
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
    xmlns:xbrli='http://www.xbrl.org/2003/instance'
    xmlns:pf="http://publicFloat"
    >
<xsl:output method='xml' indent='yes' />
<xsl:decimal-format name='base' decimal-separator='.' grouping-separator=',' minus-sign='-' />

<xsl:template match='/'>
<html xmlns='http://www.w3.org/1999/xhtml'>
   <head>
   </head>
   <body>

	<CENTER>
		<TABLE CELLSPACING="2" CELLPADDING="1" BORDER="0">
			<col width="250"></col>
			<col width="100"></col>
			<col width="100"></col>
			<col width="150"></col>
		
		<TR>
			<TD CLASS="Header" ALIGN="LEFT" VALIGN="BOTTOM">Company Name</TD>
			<TD CLASS="Header" ALIGN="LEFT" VALIGN="BOTTOM">CIK</TD>
			<TD CLASS="Header" ALIGN="LEFT" VALIGN="BOTTOM">Context</TD>
			<TD CLASS="Header" ALIGN="right" VALIGN="BOTTOM">Public Float Amount</TD>
		</TR>
		
		<xsl:for-each select="/pf:PublicFloat/pf:SECFiler">
		
		  <TR>
		    <TD CLASS="Row" ALIGN="LEFT" VALIGN="TOP"><xsl:value-of select="pf:CompanyName"/></TD>
		    <TD CLASS="Row" ALIGN="LEFT" VALIGN="TOP">
		       <xsl:element namespace="http://www.w3.org/1999/xhtml" name="a">
                <xsl:attribute name="href">http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&amp;CIK=<xsl:value-of select="pf:CIK"/>&amp;type=&amp;dateb=&amp;owner=include&amp;start=0&amp;count=40&amp;output=atom</xsl:attribute>
                <xsl:attribute name="target">
                	_blank
                </xsl:attribute>
             	 <xsl:value-of select="pf:CIK"/>
             </xsl:element>
		    </TD>
		    <TD CLASS="Row" ALIGN="LEFT" VALIGN="TOP"><xsl:value-of select="pf:Context"/></TD>
		    <TD CLASS="Row" ALIGN="right" VALIGN="TOP"><xsl:value-of select="format-number(pf:PublicFloatAmount,'#,##0','base')" /></TD>
		  </TR>
		
		</xsl:for-each>

		  <TR>
		    <TD CLASS="Footer" ALIGN="LEFT" VALIGN="TOP"> </TD>
		    <TD CLASS="Footer" ALIGN="LEFT" VALIGN="TOP"> </TD>
		    <TD CLASS="Footer" ALIGN="right" VALIGN="TOP">Total</TD>
		    <TD CLASS="Footer" ALIGN="right" VALIGN="TOP"><xsl:value-of select="format-number(pf:PublicFloat/@totalFloat,'#,##0','base')" /></TD>
		  </TR>
		
		</TABLE>
	</CENTER>


  </body>
</html>
</xsl:template>

</xsl:stylesheet>

