﻿<!-- originalFileName: @originalFileName -->
<!-- url: @url -->
<html>
	<head>
		<meta charset="utf-8"> 
		<title>File download</title>
		
		<!-- ReSharper disable InvalidValue -->
		<style type="text/css">
			*{margin:0;padding:0}
			em{font-weight:700;font-style:normal}
			img{border:0}
			html,body{color:@textColor;background:#fff;font-family:@fontFamily;font-size:@fontSize;text-decoration:none;font-weight:400;line-height:1.1em;}
			table{width:100%;border-spacing:0;border:1px solid @borderColor;border-collapse:collapse}
			table td{padding:10px;width:50%}
			table td#content{border-top:10px solid @spotColor}
			table td#header{background-color: @logoBackgroundColor}
			#content{padding:10px 40px 20px; background: @contentBackgroundColor;}
			h1{color:@textColor;font-weight:700;font-size:22px;padding-bottom:8px;padding-top:1em}
			p{padding:8px 0}
			#important,#Value{font-weight:700}
			#logo {padding-left: 40px; text-align: @logoAlignment; background-color: @logoBackgroundColor}
		</style>
		<!-- ReSharper restore InvalidValue -->
	</head>
	<body>
		<table cellpadding="0" cellspacing="0">
			<tr>
				<td id="logo">@logo</td>
			</tr>
			<tr>
				<td id="content">
					<h1>Datei herunterladen</h1>
					<p>Klicken Sie <a href="@url">hier</a>, um die Datei herunterzuladen.</p>

					<h1 id="english">Download file</h1>
					<p>Click <a href="@url">here</a> to download the file.</p>
				</td>
			</tr>
		</table>
	</body>
</html>
