9782
ID | 9782 |
Data | 2020-07-23 |
Symbol | 2020/07/23/9782 |
Instytucja | Ministerstwo Pracy i Polityki Społecznej |
Nazwa | Wniosek o przyznanie karty dużej rodziny lub wydanie duplikatu karty dużej rodziny - KDR |
Czy Aktualny | 1 |
---|
Ustawy (1)
Pliki
Styl
<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:adr="http://crd.gov.pl/xml/schematy/adres/2009/11/09/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:inst="http://crd.gov.pl/xml/schematy/instytucja/2009/11/16/" xmlns:meta="http://crd.gov.pl/xml/schematy/meta/2009/11/16/" xmlns:oso="http://crd.gov.pl/xml/schematy/osoba/2009/11/16/" xmlns:str="http://crd.gov.pl/xml/schematy/struktura/2009/11/16/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wnio="http://crd.gov.pl/wzor/2020/07/23/9782/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.1" xsi:schemaLocation="http://www.w3.org/1999/XSL/Transform http://www.w3.org/2007/schema-for-xslt20.xsd">
<xsl:template match="/">
<html>
<head>
<title>KDR - Ministerstwo Rodziny, Pracy i Polityki Społecznej</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body style="font-family: Arial; text-align: center; ">
<!-- Pierwsza strona formularza -->
<xsl:call-template name="pierwszaStronaKDR">
</xsl:call-template>
<!-- Druga strona formularza -->
<xsl:call-template name="drugaStronaKDR">
</xsl:call-template>
<xsl:for-each select="//wnio:TrescDokumentu/wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny">
<!-- Dynamiczna strona formularza -->
<xsl:call-template name="dynamicznaStronaKDR">
<xsl:with-param name="BiezacaStrona" select="position()"/>
</xsl:call-template>
</xsl:for-each>
<!-- Ostatnia strona formularza -->
<xsl:call-template name="ostatniaStronaKDR">
</xsl:call-template>
</body>
</html>
</xsl:template>
<xsl:template match="wnio:Informacja1//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja2//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja3//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja4//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="Info">
<xsl:choose>
<xsl:when test="name(.) = 'TextFlow'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="name(.) = 'br'">
<xsl:choose>
<xsl:when test="name(..) = 'dl'">
<xsl:apply-templates/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(.)}">
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(.)}">
<xsl:for-each select="@*">
<xsl:attribute name="{name(.)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="redukcjaCzcionki">
<xsl:param name="tekst"/>
<xsl:param name="bazowyRozmiarCzcionki"/>
<xsl:param name="dlugoscPolaWPikselach"/>
<xsl:variable name="czcionkaPokrywajacaPole">
<!-- (0.6 * wielkosc czcionki w pikselach) średnia szerokość litery (mniej więcej) -->
<xsl:value-of select="$dlugoscPolaWPikselach div (0.6 * string-length($tekst))"/>
</xsl:variable>
<xsl:variable name="docelowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="ceiling($czcionkaPokrywajacaPole)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<span>
<xsl:attribute name="style">
<xsl:value-of select="concat('font-size:', $docelowyRozmiarCzcionki, 'px')"/>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</span>
</xsl:template>
<xsl:template name="formatDaty">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 9, 2)"/>
/
<xsl:value-of select="substring($wartosc, 6, 2)"/>
/
<xsl:value-of select="substring($wartosc, 1, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatKoduPocztowego">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 1, 2)"/>
-
<xsl:value-of select="substring($wartosc, 3, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatTextArea">
<xsl:param name="tekst"/>
<xsl:param name="wysokosc"/>
<xsl:param name="szerokosc"/>
<xsl:param name="bazowyRozmiarCzcionki"/>
<xsl:param name="wysokoscLini"/>
<xsl:param name="liczbaPrzejscDoNowychLini"/>
<xsl:param name="tekstPoOstatnimPrzejsciuDoNowejLini"/>
<xsl:variable name="liczbaPodPierwiastkiem">
<xsl:value-of select="($szerokosc * $wysokosc) div string-length($tekst)"/>
</xsl:variable>
<xsl:variable name="pierwiastek">
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$liczbaPodPierwiastkiem"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="czcionkaPokrywajacaPole">
<xsl:value-of select="ceiling($pierwiastek)"/>
</xsl:variable>
<xsl:variable name="rozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="$czcionkaPokrywajacaPole"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<div>
<xsl:attribute name="style">
<xsl:choose>
<xsl:when test="($szerokosc * $wysokosc) < (string-length($tekst) * $bazowyRozmiarCzcionki * $bazowyRozmiarCzcionki)">
<xsl:value-of select="concat('font-size:', $rozmiarCzcionki, 'px; word-wrap : break-word;')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'word-wrap : break-word;'"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</div>
</xsl:template>
<xsl:template name="sqrt">
<xsl:param name="number" select="0"/>
<xsl:param name="try" select="1"/>
<xsl:param name="iter" select="1"/>
<xsl:param name="maxiter" select="10"/>
<xsl:choose>
<xsl:when test="$try * $try = $number or $iter > $maxiter">
<xsl:value-of select="$try"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$number"/>
<xsl:with-param name="try" select="$try - (($try * $try - $number) div (2 * $try))"/>
<xsl:with-param name="iter" select="$iter + 1"/>
<xsl:with-param name="maxiter" select="$maxiter"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Pierwsza strona formularza -->
<xsl:template name="pierwszaStronaKDR">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">KDR</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 60px; left: 0px; font-weight: bold; width: 100%; font-size: 16px; position: absolute; text-align: center; height: 70px; " class="SofLabel formTitle">
WNIOSEK
<br/>
O PRZYZNANIE KARTY DUŻEJ RODZINY
<br/>
LUB WYDANIE DUPLIKATU KARTY DUŻEJ RODZINY
</div>
<div style="top: 208px; left: 0px; width: 880px; position: absolute; height: 101px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 101px; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">NAZWA ORGANU WŁAŚCIWEGO PROWADZĄCEGO POSTĘPOWANIE W SPRAWIE KARTY DUŻEJ RODZINY (1)</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 68px; " class="SofBorderContainer">
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 7px; left: 3px; display: block; width: 840px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:NazwaOrganuWlasciwegoProwadzacegoPostepowanie"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="840"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="wysokoscLini" select="20"/>
<xsl:with-param name="liczbaPrzejscDoNowychLini" select="0"/>
<xsl:with-param name="tekstPoOstatnimPrzejsciuDoNowejLini" select="//wnio:TrescDokumentu/wnio:NazwaOrganuWlasciwegoProwadzacegoPostepowanie"/>
</xsl:call-template>
</div>
</div>
</div>
</div>
</div>
<div style="top: 308px; left: 0px; width: 880px; position: absolute; height: 233px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">ADRES ORGANU WŁAŚCIWEGO PROWADZĄCEGO POSTĘPOWANIE W SPRAWIE KARTY DUŻEJ RODZINY (1)</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 200px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 171px; " class="SofLabel">03. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 171px; display: block; width: 697px; font-size: 18px; position: absolute; height: 25px; text-align: left; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">04. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Numer domu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:NumerDomu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 195px; " class="SofLabel">06. Numer mieszkania</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:NumerLokalu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 187px; left: 4px; " class="SofLabel">(1) Przez organ właściwy rozumie się wójta, burmistrza lub prezydenta miasta właściwego ze względu na miejsce zamieszkania osoby składającej wniosek.</div>
</div>
</div>
</div>
<div style="color: #000000; top: 563px; left: 6px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">CZĘŚĆ I - Dane wnioskodawcy</div>
<div style="top: 581px; left: 0px; width: 880px; position: absolute; height: 192px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 10px; font-weight: bold; " class="SofLabel sectionHeader">DANE WNIOSKODAWCY</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 159px; " class="SofBorderContainer">
<div style="width: 123px; font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">03. Numer PESEL</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 265px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:PESEL"/>
</span>
</div>
<div style="width: 856px; font-size: 12px; position: absolute; color: #000000; top: 143px; left: 4px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 291px; " class="SofLabel">04. Data urodzenia (dd / mm / rrrr)</div>
<div style="background-color: white; border: 1px solid black; overflow: hidden; color: #000000; top: 106px; left: 291px; display: block; width: 191px; font-size: 18px; position: absolute; border-style: solid; height: 25px; " class="SofDateField">
<span style="padding-left:5px ; line-height:25px; display: block;">
<xsl:call-template name="formatDaty">
<xsl:with-param name="wartosc" select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:DataUrodzenia"/>
</xsl:call-template>
</span>
<span/>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 507px; " class="SofLabel">05. Seria i numer dokumentu potwierdzającego tożsamość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 507px; display: block; width: 361px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:SeriaNumerDokumentu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Nazwisko</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:Nazwisko"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Imię</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:Imie"/>
</span>
</div>
</div>
</div>
</div>
<div style="top: 782px; left: 0px; width: 880px; position: absolute; height: 221px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 221px; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">MIEJSCE ZAMIESZKANIA</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 24px; left: 10px; height: 187px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 171px; " class="SofLabel">03. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 171px; display: block; width: 697px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">04. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Numer domu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:NumerDomu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 195px; " class="SofLabel">06. Numer mieszkania</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresZamieszkaniaOsobyUbiegajacejSie/wnio:NumerLokalu"/>
</span>
</div>
</div>
</div>
</div>
<div style="top: 1002px; left: 0px; width: 880px; position: absolute; height: 221px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 221px; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">ADRES DO KORESPONDENCJI</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: -6px; left: 227px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:InnyAdresDoKorespondencji='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 2px; left: 262px; width: 608px; font-size: 12px; position: absolute; text-align: justify; height: 18px; " class="SofLabel justified">Wypełnij jeżeli adres do korespondencji jest inny niż miejsce zamieszkania.</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 187px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 171px; " class="SofLabel">03. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 171px; display: block; width: 697px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">04. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Numer domu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:NumerDomu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 195px; " class="SofLabel">06. Numer mieszkania</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresDoKorespondencjiOsobyUbiegajacejSie/wnio:NumerLokalu"/>
</span>
</div>
</div>
</div>
</div>
<div style="top: 1222px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: KDR(6)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: 1/<xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- Druga strona formularza -->
<xsl:template name="drugaStronaKDR">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">KDR</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="top: 35px; left: 0px; width: 880px; position: absolute; height: 165px; ">
<div style="background-color: #e3e5f4; top: 0px; left: 0px; width: 100%; border-color: #e3e5f4; border-width: 1px; position: absolute; border-style: solid; height: 165px; " class="SofBorderContainer purpleAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 10px; font-weight: bold; " class="SofLabel sectionHeader">DANE KONTAKTOWE</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 130px; " class="SofBorderContainer">
<div style="width: 234px; font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Numer telefonu stacjonarnego</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 217px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneKontaktowe/wnio:NumerTelefonuStacjonarnego"/>
</span>
</div>
<div style="width: 235px; font-size: 12px; position: absolute; color: #000000; top: 5px; left: 291px; " class="SofLabel">02. Numer telefonu komórkowego</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 291px; display: block; width: 217px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneKontaktowe/wnio:NumerTelefonuKomorkowego"/>
</span>
</div>
<div style="width: 856px; font-size: 12px; position: absolute; color: #000000; top: 99px; left: 4px; " class="SofLabel"/>
<div style="width: 856px; font-size: 12px; position: absolute; color: #000000; top: 113px; left: 4px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">03. Adres poczty elektronicznej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneKontaktowe/wnio:Email"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
</div>
</div>
</div>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: KDR(6)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: 2/<xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- Dynamiczna strona formularza -->
<xsl:template name="dynamicznaStronaKDR">
<xsl:param name="BiezacaStrona"/>
<xsl:param name="Tlo"/>
<xsl:param name="Ramka"/>
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">KDR</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="top: 50px; left: 0px; width: 880px; position: absolute; height: 1175px; ">
<div style="background-color: #ffffff; width: 100%; position: absolute; top: 0px; left: 0px; height: 100%; " class="SofBorderContainer">
<div style="background-color: #ffffff; width: 880px; position: absolute; top: 0px; left: 0px; height: 1175px; " class="SofBorderContainer ">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 10px; font-weight: bold; " class="SofLabel sectionHeader">DANE CZŁONKA RODZINY WIELODZIETNEJ - <xsl:value-of select="$BiezacaStrona"/></div>
<div style="background-color: #ffffff; top: 45px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 267px; " class="SofBorderContainer">
<div style="color: #000000; top: 10px; left: 10px; font-weight: bold; width: 458px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Dla członka rodziny wielodzietnej wskazanego poniżej: (1)</div>
<div style="background-color: #e4ebf0; top: 30px; left: 1px; width: 878px; border-color: #e4ebf0; position: absolute; height: 194px; " class="SofBorderContainer steelAll">
<div style="color: #000000; top: 52px; left: 70px; font-weight: normal; width: 557px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">wnoszę o przyznanie Karty Dużej Rodziny</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 44px; left: 36px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:PrzyznanieKDR='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 6px; left: 70px; font-weight: normal; width: 557px; font-size: 14px; font-family: arial; position: absolute; height: 35px; " class="SofLabel global14Normal">
<div style="line-height: 100%; margin-top: 0px; margin-bottom: 0px;">
<div style="margin-top: 0px; margin-bottom: 0px; clear: both;">
<span>wnoszę o przyznanie</span>
<span style="font-weight: bold; ">dodatkowej</span>
<span>formy Karty Dużej Rodziny (członek rodziny wielodzietnej posiada ważną Kartę w formie tradycyjnej albo elektronicznej)(2)</span>
</div>
</div>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 6px; left: 36px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:DodatkowaKDR='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 91px; left: 70px; font-weight: normal; width: 557px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">wnoszę o wydanie duplikatu Karty Dużej Rodziny</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 84px; left: 36px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:DuplikatKDR='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 129px; left: 70px; font-weight: normal; width: 557px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">wnoszę o przyznanie Karty Dużej Rodziny dla nowego członka rodziny wielodzietnej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 122px; left: 36px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:PrzyznanieKDRNowyCzlonek='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 161px; left: 70px; font-weight: normal; width: 540px; font-size: 14px; font-family: arial; position: absolute; height: 44px; " class="SofLabel global14Normal">wnoszę o przyznanie nowej Karty Dużej Rodziny dla członka rodziny wielodzietnej, który był wcześniej jej posiadaczem</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 161px; left: 36px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:PrzyznanieKDRBylyPosiadacz='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 64px; left: 645px; font-weight: normal; width: 77px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">w formie:</div>
<div style="color: #000000; top: 94px; left: 679px; font-weight: normal; width: 176px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">tradycyjnej (plastikowej)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 86px; left: 645px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:FormaKDR/wnio:FormaTradycyjna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 130px; left: 679px; font-weight: normal; width: 119px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">elektronicznej (3)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 122px; left: 645px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:WnoszeO/wnio:FormaKDR/wnio:FormaElektroniczna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="color: #000000; top: 238px; left: 71px; font-weight: normal; width: 557px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">nie wnoszę o przyznanie Karty Dużej Rodziny</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 230px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:KartaDuzejRodziny/wnio:NieWnoszePrzyznanieKDR='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #ffffff; top: 341px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 456px; " class="SofBorderContainer">
<div style="width: 92px; font-size: 12px; position: absolute; color: #000000; top: 98px; left: 13px; " class="SofLabel">03. Nazwisko:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 111px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:Nazwisko"/>
</span>
</div>
<div style="width: 115px; font-size: 12px; position: absolute; color: #000000; top: 10px; left: 13px; " class="SofLabel">01. Imię pierwsze:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 23px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:Imie"/>
</span>
</div>
<div style="width: 115px; font-size: 12px; position: absolute; color: #000000; top: 54px; left: 13px; " class="SofLabel">02. Imię drugie:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 67px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:ImieDrugie"/>
</span>
</div>
<div style="width: 143px; font-size: 12px; position: absolute; color: #000000; top: 142px; left: 13px; " class="SofLabel">04. Numer PESEL:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 155px; left: 13px; display: block; width: 265px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:PESEL"/>
</span>
</div>
<div style="width: 360px; font-size: 12px; position: absolute; color: #000000; top: 142px; left: 517px; " class="SofLabel">06. Seria i numer dokumentu potwierdzającego tożsamość:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 155px; left: 517px; display: block; width: 361px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:SeriaNumerDokumentu"/>
</span>
</div>
<div style="width: 208px; font-size: 12px; position: absolute; color: #000000; top: 142px; left: 301px; " class="SofLabel">05. Data urodzenia: (dd / mm / rrrr)</div>
<div style="background-color: white; border: 1px solid black; overflow: hidden; color: #000000; top: 155px; left: 301px; display: block; width: 191px; font-size: 18px; position: absolute; border-style: solid; height: 25px; " class="SofDateField">
<span style="padding-left:5px ; line-height:25px; display: block;">
<xsl:call-template name="formatDaty">
<xsl:with-param name="wartosc" select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:DataUrodzenia"/>
</xsl:call-template>
</span>
<span/>
</div>
<div style="width: 140px; font-size: 12px; position: absolute; color: #000000; top: 186px; left: 13px; " class="SofLabel">07. Imię ojca dziecka:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 199px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:ImieOjca"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 230px; left: 13px; " class="SofLabel">08. Nazwisko rodowe ojca dziecka:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 243px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:NazwiskoOjca"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 274px; left: 13px; " class="SofLabel">09. Imię matki dziecka:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 318px; left: 13px; " class="SofLabel">10. Nazwisko rodowe matki dziecka:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 287px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:ImieMatki"/>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 331px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:NazwiskoMatki"/>
</span>
</div>
<div style="width: 223px; font-size: 12px; position: absolute; color: #000000; top: 362px; left: 13px; " class="SofLabel">11. Numer telefonu komórkowego:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 375px; left: 13px; display: block; width: 217px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:NumerTelefonuKomorkowego"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 406px; left: 13px; " class="SofLabel">12. Adres poczty elektronicznej:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 419px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:Email"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
</div>
<div style="border-top: 2px solid black; top: 858px; left: 13px; width: 100px; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
<div style="color: #000000; top: 868px; left: 13px; width: 803px; font-size: 12px; position: absolute; height: 34px; " class="SofLabel">1)</div>
<div style="color: #000000; top: 868px; left: 33px; width: 816px; font-size: 12px; position: absolute; text-align: justify; height: 62px; " class="SofLabel justified">Przyznanie obu form Karty jest bezpłatne, natomiast wniosek o domówienie drugiej (dodatkowej) formy Karty podlega opłacie w wysokości 9,21 zł (za każde domówienie drugiej formy Karty). Wniosek o duplikat Karty podlega opłacie w wysokości 9,78 zł (za każdy duplikat). Opłaty wnosi się do gminy właściwej ze względu na miejsce zamieszkania członka rodziny wielodzietnej.</div>
<div style="color: #000000; top: 916px; left: 13px; width: 803px; font-size: 12px; position: absolute; height: 34px; " class="SofLabel">2)</div>
<div style="color: #000000; top: 916px; left: 33px; width: 816px; font-size: 12px; position: absolute; text-align: justify; height: 129px; " class="SofLabel justified">Przyznanie dodatkowej formy Karty Dużej Rodziny jest możliwe wyłącznie wtedy, gdy członek rodziny wielodzietnej posiada ważną Kartę. Jeżeli członek rodziny wielodzietnej posiada Kartę tradycyjną (plastikową), może wnosić o przyznanie Karty w formie elektronicznej, a jeśli posiada Kartę elektroniczną, może wnosić o przyznanie Karty tradycyjnej (plastikowej). Dodatkowa forma Karty ma zawsze te same dane, co Karta posiadana dotychczas, a zatem w przypadku zmiany danych na Karcie, konieczności przyznania Karty z nowym terminem ważności, jak również w przypadku utracenia dotychczas posiadanej Karty w formie tradycyjnej (plastikowej), konieczny jest wybór innego rodzaju wniosku. W przypadku wyboru tego rodzaju wniosku dla członka rodziny wielodzietnej nie musisz wypełniać danych służących do weryfikacji prawa do posiadania Karty, a jedynie imię (imiona), nazwisko, numer PESEL lub serię i numer dokumentu potwierdzającego tożsamość, datę urodzenia, a w przypadku wnioskowania o Kartę w formie elektronicznej – także numer telefonu, adres e-mail oraz informację o osobach, które będą mogły wyświetlać Kartę tego członka rodziny wielodzietnej.</div>
<div style="color: #000000; top: 1037px; left: 13px; width: 803px; font-size: 12px; position: absolute; height: 34px; " class="SofLabel">3)</div>
<div style="color: #000000; top: 1037px; left: 33px; width: 816px; font-size: 12px; position: absolute; text-align: justify; height: 51px; " class="SofLabel justified">Dla każdego rodzaju wniosku, poza sytuacją, gdy dla danego członka rodziny wielodzietnej wnioskodawca nie wnosi o przyznanie Karty, konieczny jest wybór formy Karty – możliwy jest wybór Karty tradycyjnej (plastikowej), Karty elektronicznej lub obu tych form. Jeżeli wniosek dotyczy przyznania dodatkowej formy Karty, należy wybrać tylko tę formę, której członek rodziny wielodzietnej obecnie nie posiada.</div>
</div>
</div>
</div>
<div style="color: #000000; top: 32px; left: 10px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">CZĘŚĆ II - Członkowie rodziny wielodzietnej:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 10px; " class="SofLabel justified12"/>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: KDR(6)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="($BiezacaStrona * 2) + 1"/>/<xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">KDR</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="top: 50px; left: 0px; width: 880px; position: absolute; height: 1175px; ">
<div style="background-color: #ffffff; width: 100%; position: absolute; top: 0px; left: 0px; height: 100%; " class="SofBorderContainer">
<div style="background-color: #ffffff; width: 880px; position: absolute; top: 0px; left: 0px; height: 859px; " class="SofBorderContainer ">
<div style="background-color: #ffffff; top: 1px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 432px; " class="SofBorderContainer">
<div style="color: #000000; top: 10px; left: 13px; font-weight: bold; width: 434px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Powyższe dane identyfikacyjne dotyczą:</div>
<div style="color: #000000; top: 37px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">rodzica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 30px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:Rodzic='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 76px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">małżonka</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 69px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:Malzonek='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 117px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">dziecka w wieku do 18. roku życia</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 110px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoDo18Lat='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 195px; left: 72px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; height: 34px; " class="SofLabel global14Normal">dziecka w wieku powyżej 18. roku życia kontynuującego naukę w szkole lub szkole wyższej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 188px; left: 38px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoPowyzej18LatKontynuacjaNauki='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 266px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; height: 34px; " class="SofLabel global14Normal">dziecka w wieku powyżej 18. roku życia legitymującego się orzeczeniem o umiarkowanym albo znacznym stopniu niepełnosprawności</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 266px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoPowyzej18LatNiepelnosprawnosc='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 305px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; height: 34px; " class="SofLabel global14Normal">dziecka, które było na utrzymaniu rodzica/rodziców lub małżonka rodzica, niespełniającego obecnie warunków wskazanych w ustawie o Karcie Dużej Rodziny (1)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 305px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoNaUtrzymaniuRodzicaMalzonkaRodzica='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 156px; left: 71px; font-weight: normal; width: 800px; font-size: 14px; font-family: arial; position: absolute; height: 34px; " class="SofLabel global14Normal">dziecka w wieku do 18. roku życia umieszczonego w rodzinie zastępczej lub rodzinnym domu dziecka</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 149px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoPowyzej18LatRodzinaZastepczaDomDziecka='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 234px; left: 72px; font-weight: normal; width: 808px; font-size: 14px; font-family: arial; position: absolute; height: 38px; " class="SofLabel global14Normal">osoby, w wieku powyżej 18. roku życia, o której mowa w art. 37 ust. 2 ustawy o wspieraniu rodziny i systemie pieczy zastępczej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 227px; left: 38px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:IdentyfikacjaCzlonkaRodziny/wnio:DzieckoPowyzej18LatPieczaZastepcza='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 342px; left: 13px; width: 857px; font-size: 12px; position: absolute; text-align: justify; height: 96px; " class="SofLabel justified">1) Przez dziecko spełniające warunki wynikające z ustawy o Karcie Dużej Rodziny należy rozumieć dziecko, które w chwili składania wniosku jest w wieku do 18 roku życia lub w wieku do 25 roku życia, jeżeli uczy się w szkole lub szkole wyższej, bez ograniczeń wiekowych, jeżeli legitymuje się orzeczeniem o umiarkowanym lub znacznym stopniu niepełnosprawności. Dziecku niespełniającemu warunków wynikających z Karty Dużej Rodziny nie przysługuje prawo do Karty Dużej Rodziny. Ponadto prawo do posiadania Karty przysługuje dziecku wyłącznie, jeśli w dniu składania wniosku o przyznanie Karty co najmniej troje dzieci w rodzinie spełnia powyższe warunki. Rodzicowi/rodzicom oraz małżonkowi rodzica prawo do posiadania Karty przysługuje, jeśli mają lub mieli łącznie na utrzymaniu co najmniej troje dzieci, bez względu na ich wiek.</div>
</div>
<div style="background-color: #ffffff; top: 462px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 209px; " class="SofBorderContainer">
<div style="color: #000000; top: 113px; left: 13px; font-weight: bold; width: 224px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Okres ważności orzeczenia:</div>
<div style="width: 136px; font-size: 12px; position: absolute; color: #000000; top: 138px; left: 37px; " class="SofLabel">11. Data: (dd / mm / rrrr)</div>
<div style="background-color: white; border: 1px solid black; overflow: hidden; color: #000000; top: 155px; left: 37px; display: block; width: 191px; font-size: 18px; position: absolute; border-style: solid; height: 25px; " class="SofDateField">
<span style="padding-left:5px ; line-height:25px; display: block;">
<xsl:call-template name="formatDaty">
<xsl:with-param name="wartosc" select="wnio:OkresWaznosciOrzeczenia/wnio:Data"/>
</xsl:call-template>
</span>
<span/>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 155px; left: 262px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:OkresWaznosciOrzeczenia/wnio:Bezterminowo='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 164px; left: 296px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">bezterminowo</div>
<div style="color: #000000; top: 10px; left: 13px; font-weight: bold; width: 536px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Stopień niepełnosprawności:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 30px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:StopienNiepelnosprawnosci/wnio:Umiarkowany='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 68px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:StopienNiepelnosprawnosci/wnio:Znaczny='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 37px; left: 71px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">umiarkowany</div>
<div style="color: #000000; top: 75px; left: 71px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">znaczny</div>
<div style="color: #000000; top: 192px; left: 13px; width: 837px; font-size: 12px; position: absolute; text-align: justify; height: 13px; " class="SofLabel justified"/>
</div>
<div style="background-color: #ffffff; top: 700px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 89px; " class="SofBorderContainer">
<div style="color: #000000; top: 10px; left: 14px; font-weight: bold; width: 562px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Planowany termin ukończenia nauki w danej szkole lub szkole wyższej:</div>
<div style="width: 140px; font-size: 12px; position: absolute; color: #000000; top: 35px; left: 37px; " class="SofLabel">12. Data: (dd / mm / rrrr)</div>
<div style="background-color: white; border: 1px solid black; overflow: hidden; color: #000000; top: 52px; left: 37px; display: block; width: 191px; font-size: 18px; position: absolute; border-style: solid; height: 25px; " class="SofDateField">
<span style="padding-left:5px ; line-height:25px; display: block;">
<xsl:call-template name="formatDaty">
<xsl:with-param name="wartosc" select="wnio:PlanowanyTerminUkonczeniaNauki"/>
</xsl:call-template>
</span>
<span/>
</div>
</div>
</div>
<div style="background-color: #ffffff; top: 818px; left: 0px; width: 880px; border-width: 1px; position: absolute; border-style: solid; height: 273px; " class="SofBorderContainer ">
<div style="color: #000000; top: 10px; left: 10px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">Miejsce zamieszkania członka rodziny wielodzietnej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 10px; left: 437px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:InnyAdresZamieszkania='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 12px; left: 471px; width: 388px; font-size: 12px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified">Wypełnij tylko jeżeli miejsce zamieszkania członka rodziny wielodzietnej jest inne niż miejsce zamieszkania wnioskodawcy.</div>
<div style="width: 129px; font-size: 12px; position: absolute; color: #000000; top: 78px; left: 13px; " class="SofLabel">02. Kod pocztowy:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 91px; left: 13px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="width: 129px; font-size: 12px; position: absolute; color: #000000; top: 34px; left: 13px; " class="SofLabel">01. Gmina / Dzielnica:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 47px; left: 13px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="width: 130px; font-size: 12px; position: absolute; color: #000000; top: 121px; left: 13px; " class="SofLabel">04. Ulica:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 134px; left: 13px; display: block; width: 865px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="width: 145px; font-size: 12px; position: absolute; color: #000000; top: 164px; left: 13px; " class="SofLabel">05. Numer domu:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 177px; left: 13px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:NumerDomu"/>
</span>
</div>
<div style="width: 142px; font-size: 12px; position: absolute; color: #000000; top: 164px; left: 205px; " class="SofLabel">06. Numer lokalu:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 177px; left: 205px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:NumerLokalu"/>
</span>
</div>
<div style="width: 147px; font-size: 12px; position: absolute; color: #000000; top: 78px; left: 181px; " class="SofLabel">03. Miejscowość:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 91px; left: 181px; display: block; width: 697px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="width: 189px; font-size: 12px; position: absolute; color: #000000; top: 208px; left: 13px; " class="SofLabel">07. Zagraniczny kod pocztowy:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 221px; left: 13px; display: block; width: 289px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:ZagranicznyKodPocztowy"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="289"/>
</xsl:call-template>
</span>
</div>
<div style="width: 457px; font-size: 12px; position: absolute; color: #000000; top: 208px; left: 325px; " class="SofLabel">08. Nazwa państwa:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 221px; left: 325px; display: block; width: 553px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresZamieszkaniaCzlonkaRodziny/wnio:NazwaPanstwa"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="553"/>
</xsl:call-template>
</span>
</div>
<div style="width: 790px; font-size: 12px; position: absolute; color: #000000; top: 257px; left: 13px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: KDR(6)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="($BiezacaStrona * 2) + 2"/>/<xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- Ostatnia strona formularza -->
<xsl:template name="ostatniaStronaKDR">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">KDR</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 35px; left: 6px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">CZĘŚĆ III - Oświadczenia:</div>
<div style="color: #000000; top: 65px; left: 6px; font-weight: bold; width: 870px; font-size: 14px; position: absolute; text-align: justify; " class="SofLabel justified14Bold">Oświadczam, że:</div>
<div style="color: #000000; top: 85px; left: 6px; font-weight: bold; width: 870px; font-size: 14px; position: absolute; text-align: justify; height: 15px; " class="SofLabel justified14Bold">− powyższe dane są prawdziwe,</div>
<div style="color: #000000; top: 104px; left: 6px; font-weight: bold; width: 870px; font-size: 14px; position: absolute; text-align: justify; height: 52px; " class="SofLabel justified14Bold">− jestem umocowany/umocowana do złożenia wniosku o przyznanie Karty Dużej Rodziny lub wydanie duplikatu Karty Dużej Rodziny oraz do odebrania Karty Dużej Rodziny lub duplikatu Karty Dużej Rodziny w imieniu członków rodziny wielodzietnej, wskazanych w niniejszym wniosku.</div>
<div style="color: #000000; top: 192px; left: 71px; font-weight: bold; width: 800px; font-size: 14px; position: absolute; text-align: justify; height: 34px; " class="SofLabel justified14Bold">Zaznacz, jeżeli wnosisz dla członków rodziny wskazanych na wniosku o Kartę w formie elektronicznej i chcesz, aby rodzic/rodzice oraz małżonek rodzica mogli wyświetlać Karty wszystkich członków rodziny.</div>
<div style="color: #000000; top: 227px; left: 71px; width: 800px; font-size: 14px; position: absolute; text-align: justify; height: 66px; " class="SofLabel justified14">Jeżeli chcesz samodzielnie dokonać wyboru osób, których Karty będą mogli wyświetlać rodzice lub małżonek rodzica, nie zaznaczaj tego pola, tylko wypełnij załącznik ZKDR-04 Informacja o osobach, które będą mogły wyświetlać kartę elektroniczną na swoich urządzeniach mobilnych.</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 192px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:KartaElektronicznaDlaCzlonkowRodziny='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 543px; left: 30px; font-weight: normal; font-size: 14px; font-family: arial; font-style: italic; position: absolute; " class="SofLabel global14Italic">Oświadczam, że jestem świadoma/świadomy odpowiedzialności karnej za złożenie fałszywego oświadczenia.</div>
<div style="top: 643px; left: 8px; width: 869px; position: absolute; height: 52px; ">
<div style="background-color: #ffffff; width: 100%; position: absolute; top: 0px; left: 0px; height: 52px; " class="SofBorderContainer">
<div style="color: #000000; top: 38px; left: 174px; width: 84px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel">(Miejscowość)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 6px; left: 3px; display: block; width: 457px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:Miejscowosc"/>
</span>
</div>
<div style="background-color: white; border: 1px solid black; overflow: hidden; color: #000000; top: 6px; left: 469px; display: block; width: 191px; font-size: 18px; position: absolute; border-style: dotted; height: 25px; " class="SofDateField dotted">
<span style="padding-left:5px ; line-height:25px; display: block;">
<xsl:call-template name="formatDaty">
<xsl:with-param name="wartosc" select="//wnio:TrescDokumentu/wnio:Data"/>
</xsl:call-template>
</span>
<span/>
</div>
<div style="color: #000000; top: 38px; left: 455px; width: 190px; font-size: 12px; position: absolute; height: 14px; text-align: center; " class="SofLabel">(Data: dd / mm / rrrr)</div>
<div style="color: #000000; top: 22px; left: 668px; font-weight: normal; width: 202px; font-size: 14px; font-family: verdana; position: absolute; height: 18px; text-align: center; " class="SofLabel paragraph14Normal"/>
<div style="color: #000000; top: 41px; left: 679px; width: 182px; font-size: 12px; position: absolute; height: 59px; text-align: center; " class="SofLabel"/>
</div>
</div>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: KDR(6)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/>/<xsl:value-of select="(count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) * 2) + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 318px; left: 13px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Do wniosku dołączam następujące dokumenty:</div>
<div style="color: #000000; top: 345px; left: 13px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">1)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 338px; left: 37px; display: block; width: 816px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik1"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="816"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 380px; left: 13px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">2)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 373px; left: 37px; display: block; width: 816px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik2"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="816"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 415px; left: 13px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">3)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 408px; left: 37px; display: block; width: 816px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik3"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="816"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 450px; left: 13px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">4)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 443px; left: 37px; display: block; width: 816px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik4"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="816"/>
</xsl:call-template>
</span>
</div>
</div>
</xsl:template>
</xsl:stylesheet>