<?xml version="1.0" encoding="UTF-8"?>
<!-- or: encoding="ISO-8859-1"? -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
<html>
<body bgcolor="FFFFCC">
	<center><h2>Northern Great Plains Bird Lit Mockup</h2></center>
	<xsl:apply-templates/>
</body>
 </html>
</xsl:template>

<xsl:template match="entry">
	<p>
		<xsl:apply-templates select="species/species_eng_nm"/>&#160;&#160;&#160;&#160;
		<em><xsl:apply-templates select="species/species_sci_nm"/></em> 
	</p>
	<p>
		<xsl:apply-templates select="author/author_name1"/>&#160;&#160;&#160;&#160;
		<em><xsl:apply-templates select="author/author_name2"/></em>&#160;&#160;&#160;&#160;
		<xsl:apply-templates select="author/author_date"/>
	</p>
	<p>
		<xsl:apply-templates select="text_title"/>
	</p>
	<p>
		<xsl:apply-templates select="text_perse"/>
	</p>
	<p>
		<xsl:apply-templates select="bibinfo/bib1"/>
		<em><xsl:apply-templates select="bibinfo/bib2"/></em>
		<xsl:apply-templates select="bibinfo/bib3"/>
	</p>
	<p>
		<xsl:apply-templates select="comment"/>
		
	</p>= = = = = = = =<p></p>
</xsl:template>

<xsl:template match="species_eng_nm">
Species: <span style="color:#CC0000">
<xsl:value-of select="."/></span>
<!-- <br /> in original script -->
</xsl:template>

<xsl:template match="species_sci_nm">
<span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="author/author_name1">
Author: <span style="color:#cc0000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="author/author_name2">
<span style="color:#cc0000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="author/author_date">
<span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="text_title">
Title: <span style="color:#cc0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>

<xsl:template match="text_perse">
[TEXT:] <span style="color:#c000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="bibinfo/bib1">
<span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="bibinfo/bib2">
<span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="bibinfo/bib3">
<span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

<xsl:template match="comment">
[COMMENTARY:] <span style="color:#000000">
<xsl:value-of select="."/></span>
</xsl:template>

</xsl:stylesheet>
