<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<!-- a stylesheet for rendering an academic resume that has been marked up in GORML -->

<xsl:template match = "/">

      <html>
      
      <head>
		<title>
			<xsl:value-of select = "resume/name"/>
		</title>
         
		<style>
			body {color: black; background: #FFFFF5}
			h1 {font-family: Georgia, Palatino, 'Times New Roman', serif; color: #C00000;}
			h3 {font-family: Georgia, Palatino, 'Times New Roman', serif; color: #0000C0;}
		</style>     
      </head>
      
	<body>
      		<blockquote>
         
		<h1 Align="Center"><xsl:value-of select = "resume/name"/></h1>
         
		<h3 Align="Center">
         		<xsl:value-of select = "resume/address"/><br/>
         		<xsl:value-of select = "resume/email"/>
		</h3>      	

		<h3>EDUCATION</h3>
	
		<ul>
			<xsl:for-each select = "resume/education">
				<li>
					<xsl:value-of select = "degree"/>, 
					<xsl:value-of select = "school"/>,  
					<xsl:value-of select = "graduation-date"/>
				</li>
			</xsl:for-each>
		</ul>

		<h3>EXPERIENCE</h3>
	
		<ul>
			<xsl:for-each select = "resume/experience">
				<li>
					<xsl:value-of select = "company"/>,  
					<xsl:value-of select = "date-from"/> to 
					<xsl:value-of select = "date-to"/>
				</li>
			<ul>
				<xsl:for-each select = "accomplishment">
					<li>
						<xsl:value-of select = "."/>
					</li>
				</xsl:for-each>
			</ul>
			</xsl:for-each>
		</ul>
		
		<h3>RESEARCH INTERESTS</h3>
	
		<ul>
			<xsl:for-each select = "resume/research">
				<li>
					<xsl:value-of select = "."/>
				</li>
			</xsl:for-each>
		</ul>
 
 		</blockquote>
	</body>
	
	</html>
	
</xsl:template>
</xsl:stylesheet>
