<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type ="text/css" href="activity.css"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">


<xsl:template match="activity">

<HTML>
<HEAD>
<TITLE>SFGrrlz Upcoming Activities</TITLE>
</HEAD>
<BODY text="#000000" bgColor="#ffffff"><!-- THIS IS THE LOGO TABLE AT THE TOP OF THE PAGE -->
<TABLE cellSpacing="0" cellPadding="0" width="100%" border="0">
  <TBODY>
  <TR vAlign="center" bgColor="#ffffff">
    <TD align="left" width="1%"><IMG height="98" 
      src="sfg2.gif" width="188" border="0"/> </TD>
    <TD align="middle"></TD></TR></TBODY></TABLE><!-- THIS IS THE TABLE THAT HAS THE FLAG AND THE TITLE OF THE PAGE -->
<TABLE cellSpacing="0" cellPadding="0" width="100%" align="center" border="0">
  <TBODY>
  <TR>
    <TD width="50">
	<IMG src="ball.gif" height="50" width="50"></IMG>
    </TD>
    <TD vAlign="center" width="100%">  <FONT size="+1"><B><FONT 
      color="#663399">SFGrrlz Upcoming activities</FONT></B> 
</FONT></TD></TR></TBODY></TABLE><BR/>
<TABLE width="100%" bgColor="#ccccff" backgroundcolor="#ccccff">

  <TR>
    <TD>
      <CENTER><FONT color="#663399"><B>Upcoming SFGrrlz Activities 
      </B></FONT> </CENTER></TD></TR></TABLE><!-- END OF THE STANDARD TOP PART OF THE SFGRRLZ PAGE -->

<!-- Start of Internal Table:  Use this area for the main part of the page -->
<TABLE>
  <TR>
    	<TD vAlign="top" >
	<!--THIS CELL CONTAINS THE TABLE OF CONTENTS INCLUDING AN INTERNAL TABLE-->
      <TABLE cellSpacing="0" cellPadding="0" border="0">
        <TR>
          <TD><A
            href="http://www.SFGrrlz.com/main.htm"><IMG height="25" 
            src="who.gif" width="150" border="0" 
            name="main" alt="Join SFgrrlz"/></A> </TD></TR>
        <TR>
          <TD >
		<A href="http://www.SFGrrlz.com/calendar.htm">
		<IMG src="calendar.gif" border="0"></IMG></A> </TD></TR>
        <TR>
          <TD><A 
            href="http://www.SFGrrlz.com/upcoming.htm"><IMG height="25" 
            src="upcoming.gif" width="150" 
            border="0" name="up" alt="Upcoming Activities"/></A> </TD></TR>
        <TR>
          <TD><A 
            href="http://www.SFGrrlz.com/previous.htm"><IMG height="25" 
            src="previous.gif" width="150" 
            border="0" name="prev" alt="Past Activities"/></A> </TD></TR>
        <TR>
          <TD><A 
            href="http://www.SFGrrlz.com/links.htm"><IMG height="25" 
            src="links.gif" width="150" border="0" 
            name="links" alt="SFGrrlz Links"/></A> </TD></TR>
        <TR>
          <TD><A 
            href="http://www.SFGrrlz.com/photos.htm"><IMG height="25" 
            src="photos.gif" width="150" 
            border="0" name="photo" alt="SFGrrlz Photos"/></A></TD></TR>
        <TR>
          <TD><A 
            href="http://www.SFGrrlz.com/index.html"><IMG height="25" 
            src="join.gif" width="150" border="0"
            name="join"/></A> </TD></TR>
	</TABLE>
	</TD>
<!--THIS IS THE BLUE STRIP UP AND DOWN THE PAGE-->
    <TD width="1%" bgColor="#ccccff"></TD>
<!--THIS IS THE THIRD CELL IN THE ROW - CONTAINS A TABLE WITH ALL THE INFO-->
    <TD vAlign="top">
      	<TABLE height="1%" cellSpacing="0" cellPadding="0" width="100%" border="0">

		<xsl:apply-templates select="activity"/>

		</TABLE>
    </TD>
</TR>
</TABLE>

<P></P>
<P align="center">
<A href="http://www.SFGrrlz.com/privacy.html">Confidentiality</A>| 
<A href="http://www.SFGrrlz.com/tos.html">Terms of Service</A>| 
<A href="http://www.SFGrrlz.com/junk.html">No Junk Mail</A>| 
<A href="mailto:estellevw@hotmail.com">Contact Me</A>
</P>
</BODY>
</HTML>
</xsl:template>

<xsl:template match="activity">
  <xsl:for-each select=".">
	<tr><td>
	  	<xsl:value-of select="title"/>: 
	  	<xsl:value-of select="description"/><BR/>
	  	<xsl:value-of select="category"/>
		<xsl:value-of select="dayofweek"/>
		<xsl:value-of select="date"/>
		<xsl:value-of select="time"/>
		<xsl:value-of select="ampm"/>
		<xsl:value-of select="event_location"/>
		<xsl:value-of select="venue"/>
		<xsl:value-of select="city"/>
		<xsl:value-of select="rsvp_date"/>
		<xsl:value-of select="rsvp_method"/>
		<xsl:value-of select="rsvp_name"/>
		<xsl:value-of select="rsvp_email"/>
		<xsl:value-of select="free"/>
		<xsl:value-of select="payment_method"/>
		<xsl:value-of select="who"/>	</td>
	<td>
	  <xsl:value-of select="category"/>
	</td>
	</tr>
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>
