<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/">
		<html>
			<head>
				<style>
Documents {
  font-family: verdana;
  font-size: 80%;
  width: 800px;
  background-color: #ffffff;
  width: 100%;
}

Hlavicka_Clanku {
  display: block;
  margin-top: 30pt;
  margin-bottom: 10pt;
  margin-left: 20px;
}

Skore {
  width: 100%;
  color: #FF0000;
  }

Nazev {
  width: 100%;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #800000;
  font-size: 125%;
  font-weight: bold;
}

Zdroj Datum Odkaz Rubrika Oblast ProfilID {
  font-size: 50%;
  width: 751px;
  /*display: block;*/
  color: #000000;
  margin-left: 20px;
}

Text_Clanku {
  display: block;
  Width: 751px;
  color: #000000;
  white-space:pre-wrap;
  margin-left: 30px;
  text-align: justify;
  line-height: 1.4em
}

Odkaz {display: block; color: blue; text-decoration: underline; clear: both}
				</style>
			</head>
			<body>
				<xsl:apply-templates/>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="Document[not(Hlavicka_Clanku/Odkaz)]">
	</xsl:template>
	<xsl:template match="@*|node()">
		<xsl:copy>
			<xsl:apply-templates select="@*|node()"/>
		</xsl:copy>
	</xsl:template>
</xsl:stylesheet>
