<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}Default title{% endblock title %}</title>
<style>
#zatemnenie {
background: rgba(102, 102, 102, 0.5);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: none;
}
#okno {
width: 300px;
height: 50px;
text-align: center;
padding: 15px;
border: 3px solid #0000cc;
border-radius: 10px;
color: #0000cc;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
background: #fff;
}
#zatemnenie:target {display: block;}
.close {
display: inline-block;
border: 1px solid #0000cc;
color: #0000cc;
padding: 0 12px;
margin: 10px;
text-decoration: none;
background: #f2f2f2;
font-size: 14pt;
cursor:pointer;
}
.close:hover {background: #e6e6ff;}
</style>
</head>
<body>
<div style="align-items: center; text-align: center">
<h1 align="left"><a href="http://www.sojuzprommontazh.by/" class><img src="/static/images/soyuz_logo.jpg" alt="" width="163" height="38"></a></h1>
<p></p>
<table width="100%" cellspacing="0" cellpadding="5">
<tr>
<td width="15%" align="left" valign="top">
{% block leftcolumn %}{% endblock leftcolumn %}
</td>
<td align="left" valign="top">
{% block rightcolumn %}{% endblock rightcolumn %}
</td>
</tr>
</table>
</div>
</body>
</body>
</html>