<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink" >

<xsl:template match="/">
<html>
<body>

<div id="container" style="width: 800px;height: 600px;padding: 1em;">

		<img src="../logo.gif" />
		<br /><br />

		<div style="font-weight: bold;font: 12pt/30px verdana;text-decoration: underline;"><xsl:value-of select="mediaindex/title" /></div>
<ul>
		<xsl:for-each select="mediaindex/file">
			<li style="font: 10pt arial;">
				<xsl:apply-templates />
			</li>
		</xsl:for-each>
</ul>
</div>

</body>
</html>
</xsl:template>

<xsl:template match="file/filename">
	<a href="{@xlink:href}" style="width: 200px;height: 10px;color: #5D6291;font: 10pt/18px arial;text-decoration: none;"><xsl:value-of select="../filename" /></a>
</xsl:template>

<xsl:template match="file/description">
	
</xsl:template>

</xsl:stylesheet>
