2530

ID2530
Data2015-07-24
Symbol2015/07/24/2530
InstytucjaMinisterstwo Pracy i Polityki Społecznej
NazwaWniosek o przyznanie karty dużej rodziny lub wydanie duplikatu karty dużej rodziny - KDR
Czy Aktualny0

Ustawy (1)

  • URI://Dziennik_Ustaw/2014/1863/22/2
  • Ustawa z dnia 5 grudnia 2014 r. o Karcie Dużej Rodziny (Dz.U.2014r. poz.1863)

    Pliki

    Styl

    <?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wnio="http://crd.gov.pl/wzor/2015/07/24/2530/" 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 Pracy i Polityki Społecznej</title>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
          </head>
          <body style="text-align: center; font-family: Arial; ">
    
    		<!-- Pierwsza strona formularza -->		
    		<xsl:call-template name="pierwszaStronaKDR">
    			<xsl:with-param name="BiezacaStrona" select="position()"/>
    		</xsl:call-template>
    	  
    		<!-- Druga i kolejne strony formularza -->			  
    		<xsl:for-each select="//wnio:TrescDokumentu/wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny">
    
    			<!-- Druga strona formularza -->
    			<xsl:if test="position() = 1">
    				<xsl:call-template name="drugaStronaKDR">
    					<xsl:with-param name="BiezacaStrona" select="position() + 1"/>
    				</xsl:call-template>
    			</xsl:if>
    
    			<!-- Dynamiczna strona formularza -->
    			<xsl:if test="position() != 1">			
    				<xsl:choose>
    					<xsl:when test="position() mod 2 = 0">
    						<xsl:call-template name="dynamicznaStronaKDR">
    							<xsl:with-param name="BiezacaStrona" select="position() + 1"/>
    							<xsl:with-param name="Tlo" select="'#e4ebf0'"/>
    							<xsl:with-param name="Ramka" select="'#e4ebf0'"/>
    						</xsl:call-template>
    					</xsl:when>
    					<xsl:otherwise>
    						<xsl:call-template name="dynamicznaStronaKDR">
    							<xsl:with-param name="BiezacaStrona" select="position() + 1"/>
    							<xsl:with-param name="Tlo" select="'#ffffff'"/>
    							<xsl:with-param name="Ramka" select="'#000000'"/>
    						</xsl:call-template>
    					</xsl:otherwise>
    				</xsl:choose>	
    			</xsl:if>
    		</xsl:for-each> 
    
    		<!-- Ostatnia strona formularza -->
    		<xsl:call-template name="ostatniaStronaKDR">
    			<xsl:with-param name="BiezacaStrona" select="count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) + 2"/>
    		</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 &lt; $bazowyRozmiarCzcionki">
              <xsl:choose>
                <xsl:when test="$czcionkaPokrywajacaPole &lt; 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 &lt; $bazowyRozmiarCzcionki">
              <xsl:choose>
                <xsl:when test="$czcionkaPokrywajacaPole &lt; 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) &lt; (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 &gt; $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>
        
      <xsl:template name="pierwszaStronaKDR">
    		<xsl:param name="BiezacaStrona"/>
    		<!-- ********************************************************************************************************************************************************** -->
    		<!-- POCZĄTEK: Strona pierwsza formularza -->
    		<!-- ********************************************************************************************************************************************************** -->
            <div style="position: relative; margin-right: auto; height: 1280px; text-align: left; overflow: hidden; width: 880px; margin-left: auto; background-color: white; margin-bottom: 15px; margin-top: 15px; border: 1px solid black; page-break-after: always; ">
              <div style="position: absolute; height: 26px; width: 880px; left: 0px; top: 0px; ">
                <div style="position: absolute; height: 24px; text-align: right; color: #000000; width: 545px; font-size: 20px; left: 322px; font-weight: bold; top: 0px; " class="SofLabel formName">KDR</div>
                <span style="position: absolute; height: 14px; color: #000000; width: 300px; font-size: 12px; left: 5px; font-weight: normal; top: 8px; " class="SofLabel page"/>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 25px; " class="SofHRule">
                  <span/>
                </div>
              </div>
              <div style="position: absolute; height: 80px; text-align: center; color: #000000; width: 100%; font-size: 16px; left: 0px; font-weight: bold; top: 84px; " class="SofLabel formTitle">
                WNIOSEK
                <br/>
                O  PRZYZNANIE  KARTY  DUŻEJ  RODZINY
                <br/>
                LUB  WYDANIE  DUPLIKATU  KARTY  DUŻEJ  RODZINY
              </div>
              <div style="position: absolute; height: 101px; width: 880px; left: 0px; top: 173px; ">
                <div style="position: absolute; height: 101px; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 11px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">NAZWA ORGANU WŁAŚCIWEGO PROWADZĄCEGO POSTĘPOWANIE W SPRAWIE KARTY DUŻEJ RODZINY (1)</div>
                  <div style="position: absolute; height: 68px; width: 870px; background-color: #ffffff; left: 10px; top: 23px; " class="SofBorderContainer">
                    <div style="position: absolute; default-background-color: #ffffff; width: 865px; background-color: white; display: block; height: 54px; color: #000000; font-size: 18px; overflow: hidden; left: 3px; border: 1px solid black; top: 7px; " 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="865"/>
                          <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="position: absolute; height: 233px; width: 880px; left: 0px; top: 273px; ">
                <div style="position: absolute; height: 100%; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 11px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">ADRES ORGANU WŁAŚCIWEGO PROWADZĄCEGO POSTĘPOWANIE W SPRAWIE KARTY DUŻEJ RODZINY (1)</div>
                  <div style="position: absolute; height: 200px; width: 870px; background-color: #ffffff; left: 10px; top: 23px; " class="SofBorderContainer">
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 49px; " class="SofLabel">02. Kod pocztowy</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 145px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 62px; " 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="position: absolute; color: #000000; font-size: 12px; left: 171px; top: 49px; " class="SofLabel">03. Miejscowość</div>
                    <div style="position: absolute; default-background-color: #ffffff; text-align: left; width: 673px; background-color: white; display: block; height: 27px; color: #000000; font-size: 18px; overflow: hidden; left: 171px; border: 1px solid black; top: 62px; " class="SofTextInput dotted">
                      <span style="padding-left:5px ;line-height:27px;padding-right: 5px; display: block;">
                        <xsl:value-of select="//wnio:TrescDokumentu/wnio:AdresOrganuWlasciwego/wnio:Miejscowosc"/>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 5px; " class="SofLabel">01. Gmina / Dzielnica</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 841px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 18px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 93px; " class="SofLabel">04. Ulica</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 841px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 106px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 137px; " class="SofLabel">05. Numer domu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; font-size: 12px; left: 195px; top: 137px; " class="SofLabel">06. Numer lokalu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 195px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; font-size: 12px; left: 4px; top: 183px; " class="SofLabel">(1) Wójt, burmistrz lub prezydent miasta właściwy ze względu na miejsce zamieszkania członka rodziny wielodzietnej.</div>
                  </div>
                </div>
              </div>
              <div style="position: absolute; color: #000000; font-size: 14px; left: 6px; font-family: arial; font-weight: bold; top: 526px; " class="SofLabel global14Bold">CZĘŚĆ I - Dane wnioskodawcy</div>
              <div style="position: absolute; height: 238px; width: 880px; left: 0px; top: 546px; ">
                <div style="position: absolute; height: 238px; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">DANE IDENTYFIKACYJNE</div>
                  <div style="position: absolute; height: 205px; width: 870px; background-color: #ffffff; left: 10px; top: 23px; " class="SofBorderContainer">
                    <div style="position: absolute; color: #000000; width: 123px; font-size: 12px; left: 3px; top: 5px; " class="SofLabel">01. Numer PESEL (1)</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 265px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 18px; " 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="position: absolute; color: #000000; width: 856px; font-size: 12px; left: 4px; top: 182px; " class="SofLabel">(1) W przypadku gdy nie nadano numeru PESEL, należy podać numer dokumentu potwierdzającego tożsamość.</div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 291px; top: 5px; " class="SofLabel">02. Data urodzenia (dd / mm / rrrr)</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 291px; border: 1px solid black; top: 18px; " 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="position: absolute; color: #000000; font-size: 12px; left: 507px; top: 5px; " class="SofLabel">03. Numer dokumentu (1)</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 361px; font-size: 18px; background-color: white; display: block; left: 507px; border: 1px solid black; top: 18px; " class="SofTextInput">
                      <span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
                        <xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:NumerDokumentu"/>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 49px; " class="SofLabel">04. Nazwisko</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 865px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 62px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 93px; " class="SofLabel">05. Imię pierwsze</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 106px; " class="SofTextInput">
                      <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 style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 137px; " class="SofLabel">06. Imię drugie</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
                        <xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneIdentyfikacyjneOsobyUbiegajacejSie/wnio:ImieDrugie"/>
                      </span>
                    </div>
                  </div>
                </div>
              </div>
              <div style="position: absolute; height: 221px; width: 880px; left: 0px; top: 783px; ">
                <div style="position: absolute; height: 221px; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 11px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">MIEJSCE ZAMIESZKANIA</div>
                  <div style="position: absolute; height: 187px; width: 870px; background-color: #ffffff; left: 10px; top: 24px; " class="SofBorderContainer">
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 49px; " class="SofLabel">02. Kod pocztowy</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 145px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 62px; " 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="position: absolute; color: #000000; font-size: 12px; left: 171px; top: 49px; " class="SofLabel">03. Miejscowość</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 673px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 171px; border: 1px solid black; top: 62px; " 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="673"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 5px; " class="SofLabel">01. Gmina / Dzielnica</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 3px; border: 1px solid black; top: 18px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 93px; " class="SofLabel">04. Ulica</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 3px; border: 1px solid black; top: 106px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 137px; " class="SofLabel">05. Numer domu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; font-size: 12px; left: 195px; top: 137px; " class="SofLabel">06. Numer lokalu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 195px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; height: 221px; width: 880px; left: 0px; top: 1003px; ">
                <div style="position: absolute; height: 221px; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 11px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">ADRES DO KORESPONDENCJI</div>
                  <div style="position: absolute; height: 187px; width: 870px; background-color: #ffffff; left: 10px; top: 23px; " class="SofBorderContainer">
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 49px; " class="SofLabel">02. Kod pocztowy</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 145px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 62px; " 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="position: absolute; color: #000000; font-size: 12px; left: 171px; top: 49px; " class="SofLabel">03. Miejscowość</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 673px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 171px; border: 1px solid black; top: 62px; " 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="673"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 5px; " class="SofLabel">01. Gmina / Dzielnica</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 3px; border: 1px solid black; top: 18px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 93px; " class="SofLabel">04. Ulica</div>
                    <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 3px; border: 1px solid black; top: 106px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 137px; " class="SofLabel">05. Numer domu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; font-size: 12px; left: 195px; top: 137px; " class="SofLabel">06. Numer lokalu</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 195px; border: 1px solid black; top: 150px; " class="SofTextInput">
                      <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="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 232px; border: 1px solid black; top: 997px; " 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="position: absolute; color: #000000; width: 629px; font-size: 12px; left: 268px; top: 1011px; " class="SofLabel">Zaznacz jeżeli adres do korespondencji jest inny niż miejsce zamieszkania.</div>
              <div style="position: absolute; height: 16px; width: 880px; left: 0px; top: 1223px; ">
                <div style="position: absolute; height: 14px; text-align: right; color: #000000; width: 300px; font-size: 11px; left: 559px; font-family: verdana; top: 3px; " class="SofLabel footnote">wersja: KDR(1)</div>
                <div style="position: absolute; height: 14px; text-align: center; color: #000000; width: 850px; font-size: 11px; left: 10px; font-family: verdana; top: 3px; " class="SofLabel footnote">strona: <xsl:value-of select="$BiezacaStrona"/>/<xsl:value-of select="count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) + 2"/></div>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 1px; " class="SofHRule">
                  <span/>
                </div>
              </div>
            </div>
      </xsl:template>
    
      <xsl:template name="drugaStronaKDR">
    		<xsl:param name="BiezacaStrona"/>
    		<!-- ********************************************************************************************************************************************************** -->
    		<!-- POCZĄTEK: Strona druga formularza -->
    		<!-- ********************************************************************************************************************************************************** -->
            <div style="position: relative; margin-right: auto; height: 1280px; text-align: left; overflow: hidden; width: 880px; margin-left: auto; background-color: white; margin-bottom: 15px; margin-top: 15px; border: 1px solid black; page-break-after: always; ">
              <div style="position: absolute; height: 26px; width: 880px; left: 0px; top: 0px; ">
                <div style="position: absolute; height: 24px; text-align: right; color: #000000; width: 545px; font-size: 20px; left: 322px; font-weight: bold; top: 0px; " class="SofLabel formName">KDR</div>
                <span style="position: absolute; height: 14px; color: #000000; width: 300px; font-size: 12px; left: 5px; font-weight: normal; top: 8px; " class="SofLabel page"/>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 25px; " class="SofHRule">
                  <span/>
                </div>
              </div>
              <div style="position: absolute; height: 165px; width: 880px; left: 0px; top: 26px; ">
                <div style="position: absolute; height: 165px; width: 100%; border-style: solid; background-color: #e4ebf0; border-color: #e4ebf0; left: 0px; border-width: 1px; top: 0px; " class="SofBorderContainer steelAll">
                  <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 8px; " class="SofLabel sectionHeader">DANE KONTAKTOWE</div>
                  <div style="position: absolute; height: 130px; width: 870px; background-color: #ffffff; left: 10px; top: 23px; " class="SofBorderContainer">
                    <div style="position: absolute; color: #000000; width: 234px; font-size: 12px; left: 3px; top: 5px; " class="SofLabel">01. Numer telefonu stacjonarnego (1)</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 217px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 18px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; width: 235px; font-size: 12px; left: 291px; top: 5px; " class="SofLabel">02. Numer telefonu komórkowego (1)</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 217px; font-size: 18px; background-color: white; display: block; left: 291px; border: 1px solid black; top: 18px; " class="SofTextInput">
                      <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="position: absolute; color: #000000; width: 856px; font-size: 12px; left: 4px; top: 94px; " class="SofLabel">(1) Dotyczy osoby, która posiada telefon kontaktowy.</div>
                    <div style="position: absolute; color: #000000; width: 856px; font-size: 12px; left: 4px; top: 108px; " class="SofLabel">(2) Dotyczy osoby, która posiada adres poczty elektronicznej.</div>
                    <div style="position: absolute; color: #000000; font-size: 12px; left: 3px; top: 49px; " class="SofLabel">03. Adres poczty elektronicznej (2)</div>
                    <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 841px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 62px; " 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="841"/>
                        </xsl:call-template>
                      </span>
                    </div>
                  </div>
                </div>
              </div>
              <div style="position: absolute; color: #000000; font-size: 14px; left: 6px; font-family: arial; font-weight: bold; top: 205px; " class="SofLabel global14Bold">CZĘŚĆ II - Członkowie rodziny wielodzietnej:</div>
              <div style="position: absolute; text-align: justify; color: #000000; width: 864px; font-size: 12px; left: 6px; top: 221px; " class="SofLabel justified"/>
              <div style="position: absolute; height: 740px; width: 880px; border-style: solid; background-color: #ffffff; left: 0px; border-width: 1px; top: 253px; " class="SofBorderContainer ">
                <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 7px; " class="SofLabel sectionHeader">DANE IDENTYFIKACYJNE CZŁONKA RODZINY WIELODZIETNEJ - <xsl:value-of select="$BiezacaStrona - 1"/></div>
                <div style="position: absolute; color: #000000; width: 358px; font-size: 14px; left: 10px; font-family: arial; font-weight: normal; top: 36px; " class="SofLabel global14Normal">Dla członka rodziny wielodzietnej wskazanego poniżej:</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 370px; top: 37px; " class="SofLabel"/>
                <div style="position: absolute; color: #000000; width: 321px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 75px; " class="SofLabel global14Normal">wnoszę o przyznanie Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 67px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 404px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 75px; " class="SofLabel global14Normal">nie wnoszę o przyznanie Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 67px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:NiePrzyznanieKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 410px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 120px; " class="SofLabel global14Normal">wnoszę o wydanie duplikatu Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 113px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:DuplikatKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 159px; " class="SofLabel global14Normal">
                  wnoszę o przyznanie Karty Dużej Rodziny
                  <br/>
                  dla nowego członka rodziny wielodzietnej
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 159px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDRNowyCzlonek='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 399px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 159px; " 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="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 159px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDRBylyPosiadacz='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 250px; " class="SofLabel">Nazwisko:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 865px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 263px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 294px; " class="SofLabel">Imię pierwsze:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 307px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 338px; " class="SofLabel">Imię drugie:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 351px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; width: 123px; font-size: 12px; left: 13px; top: 206px; " class="SofLabel">Numer PESEL: (1)</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 265px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 219px; " 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="position: absolute; color: #000000; font-size: 12px; left: 517px; top: 206px; " class="SofLabel">Numer dokumentu: (1)</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 361px; font-size: 18px; background-color: white; display: block; left: 517px; border: 1px solid black; top: 219px; " class="SofTextInput">
                  <span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
                    <xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:NumerDokumentu"/>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 301px; top: 206px; " class="SofLabel">Data urodzenia: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 301px; border: 1px solid black; top: 219px; " 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="position: absolute; color: #000000; width: 284px; font-size: 14px; left: 14px; font-family: arial; font-weight: normal; top: 396px; " class="SofLabel global14Normal">Powyższe dane identyfikacyjne dotyczą:</div>
                <div style="position: absolute; color: #000000; width: 248px; font-size: 12px; left: 284px; top: 397px; " class="SofLabel"/>
                <div style="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 427px; " class="SofLabel global14Normal">rodzica</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 420px; " 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="position: absolute; color: #000000; width: 376px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 427px; " class="SofLabel global14Normal">małżonka</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 420px; " 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="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 465px; " class="SofLabel global14Normal">dziecka w wieku do 18. roku życia</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 458px; " 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="position: absolute; height: 34px; color: #000000; width: 395px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 458px; " class="SofLabel global14Normal">dziecka w wieku powyżej 18. roku życia kontynuującego naukę w szkole lub szkole wyższej</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 458px; " 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="position: absolute; height: 34px; color: #000000; width: 784px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 561px; " 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="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 561px; " 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="position: absolute; color: #000000; width: 224px; font-size: 14px; left: 13px; font-family: arial; font-weight: normal; top: 627px; " class="SofLabel global14Normal">Okres ważności orzeczenia: (2)</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 219px; top: 607px; " class="SofLabel">Data: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 219px; border: 1px solid black; top: 620px; " 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"/>
                    </xsl:call-template>
                  </span>
                  <span/>
                </div>
                <div style="position: absolute; height: 34px; color: #000000; width: 350px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 510px; " class="SofLabel global14Normal">
                  dziecka w wieku do 18. roku życia umieszczonego
                  <br/>
                  w rodzinie zastępczej lub rodzinnym domu dziecka
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 510px; " 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="position: absolute; height: 51px; color: #000000; width: 394px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 500px; " class="SofLabel global14Normal">
                  osoby, w wieku powyżej 18. roku życia, o której mowa
                  <br/>
                  w art. 37 ust. 2 ustawy o wspieraniu rodziny i systemie
                  <br/>
                  pieczy zastępczej
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 510px; " 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="position: absolute; color: #000000; width: 495px; font-size: 14px; left: 14px; font-family: arial; font-weight: normal; top: 666px; " class="SofLabel global14Normal">Planowany termin ukończenia nauki w danej szkole lub szkole wyższej: (3)</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 517px; top: 645px; " class="SofLabel">Data: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 517px; border: 1px solid black; top: 658px; " 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 style="position: absolute; height: 13px; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 694px; " class="SofLabel">(1) W przypadku gdy nie nadano numeru PESEL, należy podać numer dokumentu potwierdzającego tożsamość.</div>
                <div style="position: absolute; height: 13px; text-align: justify; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 708px; " class="SofLabel justified">(2) Wypełnić zgodnie z orzeczeniem o umiarkowanym albo znacznym stopniu niepełnosprawności.</div>
                <div style="position: absolute; height: 13px; text-align: justify; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 722px; " class="SofLabel justified">(3) Wypełnić zgodnie z zaświadczeniem ze szkoły lub szkoły wyższej o planowanym terminie ukończenia nauki w danej placówce.</div>
              </div>
              <div style="position: absolute; height: 227px; width: 880px; border-style: solid; background-color: #ffffff; left: 0px; border-width: 1px; top: 997px; " class="SofBorderContainer ">
                <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 7px; " class="SofLabel sectionHeader">MIEJSCE ZAMIESZKANIA CZŁONKA RODZINY WIELODZIETNEJ - <xsl:value-of select="$BiezacaStrona - 1"/></div>
    			<div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 2px; " 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="position: absolute; height: 44px; text-align: justify; color: #000000; width: 365px; font-size: 12px; left: 481px; top: 2px; " class="SofLabel justified">Zaznacz jeżeli miejsce zamieszkania członka rodziny wielodzietnej jest inne niż miejsce zamieszkania wnioskodawcy.</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 89px; " class="SofLabel">Kod pocztowy:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 145px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 102px; " 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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 44px; " class="SofLabel">Gmina / Dzielnica:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 13px; border: 1px solid black; top: 57px; " 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="841"/>
                    </xsl:call-template>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 133px; " class="SofLabel">Ulica:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 13px; border: 1px solid black; top: 146px; " 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="841"/>
                    </xsl:call-template>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 177px; " class="SofLabel">Numer domu:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 190px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 205px; top: 177px; " class="SofLabel">Numer lokalu:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 205px; border: 1px solid black; top: 190px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 181px; top: 89px; " class="SofLabel">Miejscowość:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 673px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 181px; border: 1px solid black; top: 102px; " 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="673"/>
                    </xsl:call-template>
                  </span>
                </div>
              </div>
              <div style="position: absolute; height: 16px; width: 880px; left: 0px; top: 1223px; ">
                <div style="position: absolute; height: 14px; text-align: right; color: #000000; width: 300px; font-size: 11px; left: 559px; font-family: verdana; top: 3px; " class="SofLabel footnote">wersja: KDR(1)</div>
                <div style="position: absolute; height: 14px; text-align: center; color: #000000; width: 850px; font-size: 11px; left: 10px; font-family: verdana; top: 3px; " class="SofLabel footnote">strona: <xsl:value-of select="$BiezacaStrona"/>/<xsl:value-of select="count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) + 2"/></div>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 1px; " class="SofHRule">
                  <span/>
                </div>
              </div>
            </div>  
      </xsl:template>
    
      <xsl:template name="dynamicznaStronaKDR">
    		<xsl:param name="BiezacaStrona"/>
    		<xsl:param name="Tlo"/>
    		<xsl:param name="Ramka"/>
    		<!-- ********************************************************************************************************************************************************** -->
    		<!-- POCZĄTEK: Strona dynamiczna formularza (tło) -->
    		<!-- ********************************************************************************************************************************************************** -->
            <div style="position: relative; margin-right: auto; height: 1280px; text-align: left; overflow: hidden; width: 880px; margin-left: auto; background-color: white; margin-bottom: 15px; margin-top: 15px; border: 1px solid black; page-break-after: always; ">
              <div style="position: absolute; height: 26px; width: 880px; left: 0px; top: 0px; ">
                <div style="position: absolute; height: 24px; text-align: right; color: #000000; width: 545px; font-size: 20px; left: 322px; font-weight: bold; top: 0px; " class="SofLabel formName">KDR</div>
                <span style="position: absolute; height: 14px; color: #000000; width: 300px; font-size: 12px; left: 5px; font-weight: normal; top: 8px; " class="SofLabel page"/>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 25px; " class="SofHRule">
                  <span/>
                </div>
              </div>
              <div style="position: absolute; height: 740px; width: 880px; border-style: solid; background-color: {$Tlo}; border-color: {$Ramka}; left: 0px; border-width: 1px; top: 133px; " class="SofBorderContainer steelAll">
                <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 7px; " class="SofLabel sectionHeader">DANE IDENTYFIKACYJNE CZŁONKA RODZINY WIELODZIETNEJ - <xsl:value-of select="$BiezacaStrona - 1"/></div>
                <div style="position: absolute; color: #000000; width: 358px; font-size: 14px; left: 10px; font-family: arial; font-weight: normal; top: 36px; " class="SofLabel global14Normal">Dla członka rodziny wielodzietnej wskazanego poniżej:</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 370px; top: 37px; " class="SofLabel"/>
                <div style="position: absolute; color: #000000; width: 321px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 75px; " class="SofLabel global14Normal">wnoszę o przyznanie Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 67px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 404px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 75px; " class="SofLabel global14Normal">nie wnoszę o przyznanie Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 67px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:NiePrzyznanieKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 410px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 120px; " class="SofLabel global14Normal">wnoszę o wydanie duplikatu Karty Dużej Rodziny</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 113px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:DuplikatKDR='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 159px; " class="SofLabel global14Normal">
                  wnoszę o przyznanie Karty Dużej Rodziny
                  <br/>
                  dla nowego członka rodziny wielodzietnej
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 159px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDRNowyCzlonek='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; width: 399px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 159px; " 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="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 159px; " class="SofCheckBox">
                  <xsl:if test="wnio:WnoszeO/wnio:PrzyznanieKDRBylyPosiadacz='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 250px; " class="SofLabel">Nazwisko:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 865px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 263px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 294px; " class="SofLabel">Imię pierwsze:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 307px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 338px; " class="SofLabel">Imię drugie:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 721px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 351px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; width: 123px; font-size: 12px; left: 13px; top: 206px; " class="SofLabel">Numer PESEL: (1)</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 265px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 219px; " 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="position: absolute; color: #000000; font-size: 12px; left: 517px; top: 206px; " class="SofLabel">Numer dokumentu: (1)</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 361px; font-size: 18px; background-color: white; display: block; left: 517px; border: 1px solid black; top: 219px; " class="SofTextInput">
                  <span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
                    <xsl:value-of select="wnio:DaneIdentyfikacyjneCzlonkaRodziny/wnio:NumerDokumentu"/>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 301px; top: 206px; " class="SofLabel">Data urodzenia: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 301px; border: 1px solid black; top: 219px; " 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="position: absolute; color: #000000; width: 284px; font-size: 14px; left: 14px; font-family: arial; font-weight: normal; top: 396px; " class="SofLabel global14Normal">Powyższe dane identyfikacyjne dotyczą:</div>
                <div style="position: absolute; color: #000000; width: 248px; font-size: 12px; left: 284px; top: 397px; " class="SofLabel"/>
                <div style="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 427px; " class="SofLabel global14Normal">rodzica</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 420px; " 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="position: absolute; color: #000000; width: 376px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 427px; " class="SofLabel global14Normal">małżonka</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 420px; " 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="position: absolute; color: #000000; width: 333px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 465px; " class="SofLabel global14Normal">dziecka w wieku do 18. roku życia</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 458px; " 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="position: absolute; height: 34px; color: #000000; width: 395px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 458px; " class="SofLabel global14Normal">dziecka w wieku powyżej 18. roku życia kontynuującego naukę w szkole lub szkole wyższej</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 458px; " 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="position: absolute; height: 34px; color: #000000; width: 784px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 561px; " 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="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 561px; " 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="position: absolute; color: #000000; width: 224px; font-size: 14px; left: 13px; font-family: arial; font-weight: normal; top: 627px; " class="SofLabel global14Normal">Okres ważności orzeczenia: (2)</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 219px; top: 607px; " class="SofLabel">Data: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 219px; border: 1px solid black; top: 620px; " 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"/>
                    </xsl:call-template>
                  </span>
                  <span/>
                </div>
                <div style="position: absolute; height: 34px; color: #000000; width: 350px; font-size: 14px; left: 71px; font-family: arial; font-weight: normal; top: 510px; " class="SofLabel global14Normal">
                  dziecka w wieku do 18. roku życia umieszczonego
                  <br/>
                  w rodzinie zastępczej lub rodzinnym domu dziecka
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 37px; border: 1px solid black; top: 510px; " 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="position: absolute; height: 51px; color: #000000; width: 394px; font-size: 14px; left: 479px; font-family: arial; font-weight: normal; top: 500px; " class="SofLabel global14Normal">
                  osoby, w wieku powyżej 18. roku życia, o której mowa
                  <br/>
                  w art. 37 ust. 2 ustawy o wspieraniu rodziny i systemie
                  <br/>
                  pieczy zastępczej
                </div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 510px; " 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="position: absolute; color: #000000; width: 495px; font-size: 14px; left: 14px; font-family: arial; font-weight: normal; top: 666px; " class="SofLabel global14Normal">Planowany termin ukończenia nauki w danej szkole lub szkole wyższej: (3)</div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 517px; top: 645px; " class="SofLabel">Data: (dd / mm / rrrr)</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: solid; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 517px; border: 1px solid black; top: 658px; " 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 style="position: absolute; height: 13px; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 694px; " class="SofLabel">(1) W przypadku gdy nie nadano numeru PESEL, należy podać numer dokumentu potwierdzającego tożsamość.</div>
                <div style="position: absolute; height: 13px; text-align: justify; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 708px; " class="SofLabel justified">(2) Wypełnić zgodnie z orzeczeniem o umiarkowanym albo znacznym stopniu niepełnosprawności.</div>
                <div style="position: absolute; height: 13px; text-align: justify; color: #000000; width: 856px; font-size: 12px; left: 14px; top: 722px; " class="SofLabel justified">(3) Wypełnić zgodnie z zaświadczeniem ze szkoły lub szkoły wyższej o planowanym terminie ukończenia nauki w danej placówce.</div>
              </div>
              <div style="position: absolute; height: 227px; width: 880px; border-style: solid; background-color: {$Tlo}; border-color: {$Ramka}; left: 0px; border-width: 1px; top: 877px; " class="SofBorderContainer steelAll">
                <div style="position: absolute; color: #000000; font-size: 12px; left: 10px; font-weight: bold; top: 7px; " class="SofLabel sectionHeader">MIEJSCE ZAMIESZKANIA CZŁONKA RODZINY WIELODZIETNEJ - <xsl:value-of select="$BiezacaStrona - 1"/></div>
    			<div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 445px; border: 1px solid black; top: 2px; " 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="position: absolute; height: 44px; text-align: justify; color: #000000; width: 365px; font-size: 12px; left: 481px; top: 2px; " class="SofLabel justified">Zaznacz jeżeli miejsce zamieszkania członka rodziny wielodzietnej jest inne niż miejsce zamieszkania wnioskodawcy.</div>            <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 89px; " class="SofLabel">Kod pocztowy:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 145px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 102px; " 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="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 44px; " class="SofLabel">Gmina / Dzielnica:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 13px; border: 1px solid black; top: 57px; " 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="841"/>
                    </xsl:call-template>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 133px; " class="SofLabel">Ulica:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 841px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 13px; border: 1px solid black; top: 146px; " 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="841"/>
                    </xsl:call-template>
                  </span>
                </div>
                <div style="position: absolute; color: #000000; font-size: 12px; left: 13px; top: 177px; " class="SofLabel">Numer domu:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 13px; border: 1px solid black; top: 190px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 205px; top: 177px; " class="SofLabel">Numer lokalu:</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 169px; font-size: 18px; background-color: white; display: block; left: 205px; border: 1px solid black; top: 190px; " class="SofTextInput">
                  <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="position: absolute; color: #000000; font-size: 12px; left: 181px; top: 89px; " class="SofLabel">Miejscowość:</div>
                <div style="position: absolute; default-background-color: #ffffff; width: 673px; background-color: white; border-color: #696969; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 181px; border: 1px solid black; top: 102px; " 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="673"/>
                    </xsl:call-template>
                  </span>
                </div>
              </div>
              <div style="position: absolute; height: 16px; width: 880px; left: 0px; top: 1223px; ">
                <div style="position: absolute; height: 14px; text-align: right; color: #000000; width: 300px; font-size: 11px; left: 559px; font-family: verdana; top: 3px; " class="SofLabel footnote">wersja: KDR(1)</div>
                <div style="position: absolute; height: 14px; text-align: center; color: #000000; width: 850px; font-size: 11px; left: 10px; font-family: verdana; top: 3px; " class="SofLabel footnote">strona: <xsl:value-of select="$BiezacaStrona"/>/<xsl:value-of select="count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) + 2"/></div>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 1px; " class="SofHRule">
                  <span/>
                </div>
              </div>
            </div>				
    		<!-- ********************************************************************************************************************************************************** -->
    		<!-- KONIEC: Strona dynamiczna formularza (tło) -->
    		<!-- ********************************************************************************************************************************************************** -->
      </xsl:template>  
      
      <xsl:template name="ostatniaStronaKDR">
    		<xsl:param name="BiezacaStrona"/>
    		<!-- ********************************************************************************************************************************************************** -->
    		<!-- POCZĄTEK: Ostatnia strona formularza -->
    		<!-- ********************************************************************************************************************************************************** -->
            <div style="position: relative; margin-right: auto; height: 1280px; text-align: left; overflow: hidden; width: 880px; margin-left: auto; background-color: white; margin-bottom: 15px; margin-top: 15px; border: 1px solid black; ">
              <div style="position: absolute; height: 26px; width: 880px; left: 0px; top: 0px; ">
                <div style="position: absolute; height: 24px; text-align: right; color: #000000; width: 545px; font-size: 20px; left: 322px; font-weight: bold; top: 0px; " class="SofLabel formName">KDR</div>
                <span style="position: absolute; height: 14px; color: #000000; width: 300px; font-size: 12px; left: 5px; font-weight: normal; top: 8px; " class="SofLabel page"/>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 25px; " class="SofHRule">
                  <span/>
                </div>
              </div>
              <div style="position: absolute; color: #000000; font-size: 14px; left: 6px; font-family: arial; font-weight: bold; top: 45px; " class="SofLabel global14Bold">CZĘŚĆ III - Oświadczenia:</div>
              <div style="position: absolute; text-align: justify; color: #000000; width: 870px; font-size: 14px; left: 6px; font-weight: bold; top: 75px; " class="SofLabel justified14Bold">Oświadczam, że:</div>
              <div style="position: absolute; height: 15px; text-align: justify; color: #000000; width: 870px; font-size: 14px; left: 6px; font-weight: bold; top: 95px; " class="SofLabel justified14Bold">− powyższe dane są prawdziwe,</div>
              <div style="position: absolute; height: 51px; text-align: justify; color: #000000; width: 870px; font-size: 14px; left: 6px; font-weight: bold; top: 114px; " 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="position: absolute; height: 50px; width: 869px; background-color: #ffffff; left: 8px; top: 208px; " class="SofBorderContainer ">
                <div style="position: absolute; color: #000000; width: 382px; font-size: 14px; left: 39px; font-family: arial; font-weight: normal; top: 18px; " class="SofLabel global14Normal">Potwierdzam dane zawarte w oświadczeniu powyżej</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 5px; border: 1px solid black; top: 11px; " class="SofCheckBox">
                  <xsl:if test="//wnio:TrescDokumentu/wnio:Oswiadczenia/wnio:PotwierdzenieZgodnosciDanych='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: dotted; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 569px; border: 1px solid black; top: 3px; " 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:Oswiadczenia/wnio:DataPotwierdzenia"/>
                    </xsl:call-template>
                  </span>
                  <span/>
                </div>
                <div style="position: absolute; height: 13px; text-align: center; color: #000000; width: 190px; font-size: 12px; left: 575px; top: 38px; " class="SofLabel">(Data: dd / mm / rrrr)</div>
                <div style="position: absolute; height: 15px; text-align: right; color: #000000; width: 205px; font-size: 14px; left: 659px; font-family: verdana; font-weight: normal; top: 20px; " class="SofLabel paragraph14Normal"/>
                <div style="position: absolute; height: 13px; text-align: center; color: #000000; width: 183px; font-size: 12px; left: 678px; top: 38px; " class="SofLabel"/>
              </div>
              <div style="position: absolute; height: 50px; width: 869px; background-color: #ffffff; left: 8px; top: 348px; " class="SofBorderContainer ">
                <div style="position: absolute; color: #000000; width: 318px; font-size: 14px; left: 39px; font-family: arial; font-weight: normal; top: 3px; " class="SofLabel global14Normal">Oświadczam, że jestem świadoma/świadomy odpowiedzialności karnej za złożenie fałszywego oświadczenia</div>
                <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 25px; font-size: 14px; background-color: white; display: block; left: 5px; border: 1px solid black; top: 11px; " class="SofCheckBox">
                  <xsl:if test="//wnio:TrescDokumentu/wnio:Oswiadczenia/wnio:OswiadczenieOdpowiedzialnosciKarnej='true'">
                    <span style="text-align: center ; line-height: 25px;  display: block; ">X</span>
                  </xsl:if>
                </div>
                <div style="position: absolute; default-background-color: #ffffff; width: 191px; border-style: dotted; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 569px; border: 1px solid black; top: 3px; " 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:Oswiadczenia/wnio:DataOswiadczenia"/>
                    </xsl:call-template>
                  </span>
                  <span/>
                </div>
                <div style="position: absolute; height: 13px; text-align: center; color: #000000; width: 190px; font-size: 12px; left: 575px; top: 38px; " class="SofLabel">(Data: dd / mm / rrrr)</div>
                <div style="position: absolute; height: 15px; text-align: right; color: #000000; width: 205px; font-size: 14px; left: 659px; font-family: verdana; font-weight: normal; top: 20px; " class="SofLabel paragraph14Normal"/>
                <div style="position: absolute; height: 13px; text-align: center; color: #000000; width: 183px; font-size: 12px; left: 678px; top: 38px; " class="SofLabel"/>
              </div>
              <div style="position: absolute; height: 52px; width: 869px; left: 8px; top: 515px; ">
                <div style="position: absolute; height: 52px; width: 100%; background-color: #ffffff; left: 0px; top: 0px; " class="SofBorderContainer">
                  <div style="position: absolute; height: 14px; color: #000000; width: 84px; font-size: 12px; left: 174px; top: 38px; " class="SofLabel">(Miejscowość)</div>
                  <div style="position: absolute; height: 25px; color: #000000; default-background-color: #ffffff; overflow: hidden; width: 457px; font-size: 18px; background-color: white; display: block; left: 3px; border: 1px solid black; top: 6px; " 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="position: absolute; default-background-color: #ffffff; width: 191px; border-style: dotted; background-color: white; display: block; height: 25px; color: #000000; font-size: 18px; overflow: hidden; left: 569px; border: 1px solid black; top: 6px; " 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="position: absolute; height: 14px; text-align: center; color: #000000; width: 190px; font-size: 12px; left: 575px; top: 38px; " class="SofLabel">(Data: dd / mm / rrrr)</div>
                  <div style="position: absolute; height: 18px; text-align: center; color: #000000; width: 202px; font-size: 14px; left: 668px; font-family: verdana; font-weight: normal; top: 22px; " class="SofLabel paragraph14Normal"/>
                  <div style="position: absolute; height: 59px; text-align: center; color: #000000; width: 182px; font-size: 12px; left: 679px; top: 41px; " class="SofLabel"/>
                </div>
              </div>
              <div style="position: absolute; height: 16px; width: 880px; left: 0px; top: 1223px; ">
                <div style="position: absolute; height: 14px; text-align: right; color: #000000; width: 300px; font-size: 11px; left: 559px; font-family: verdana; top: 3px; " class="SofLabel footnote">wersja: KDR(1)</div>
                <div style="position: absolute; height: 14px; text-align: center; color: #000000; width: 850px; font-size: 11px; left: 10px; font-family: verdana; top: 3px; " class="SofLabel footnote">strona: <xsl:value-of select="$BiezacaStrona"/>/<xsl:value-of select="count(//wnio:CzlonkowieRodziny/wnio:DaneCzlonkaRodziny) + 2"/></div>
                <div style="position: absolute; height: 1px; width: 100%; left: 0px; border-top: 2px solid black; top: 1px; " class="SofHRule">
                  <span/>
                </div>
              </div>
            </div>
      </xsl:template>
      
    </xsl:stylesheet>