9169
ID | 9169 |
Data | 2020-03-02 |
Symbol | 2020/03/02/9169 |
Instytucja | Ministerstwo Rodziny, Pracy i Polityki Społecznej |
Nazwa | Wniosek o wpis do rejestru żłobków i klubów dziecięcych lub wpis do wykazu dziennych opiekunów oraz podmiotów ich zatrudniających - RKZ-1 |
Czy Aktualny | 1 |
---|
Ustawy (1)
Pliki
Styl
<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:adr="http://crd.gov.pl/xml/schematy/adres/2009/11/09/" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:inst="http://crd.gov.pl/xml/schematy/instytucja/2009/11/16/" xmlns:meta="http://crd.gov.pl/xml/schematy/meta/2009/11/16/" xmlns:oso="http://crd.gov.pl/xml/schematy/osoba/2009/11/16/" xmlns:str="http://crd.gov.pl/xml/schematy/struktura/2009/11/16/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wnio="http://crd.gov.pl/wzor/2020/03/02/9169/" 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>RKZ-1 - Ministerstwo Rodziny, Pracy i Polityki Społecznej</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body style="font-family: Arial; text-align: center; ">
<!-- pierwsza strona formularza -->
<xsl:call-template name="pierwszaStrona">
</xsl:call-template>
<!-- druga strona formularza -->
<xsl:call-template name="drugaStrona">
</xsl:call-template>
<xsl:for-each select="//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek">
<!-- trzecia strona formularza -->
<xsl:call-template name="trzeciaStrona">
<xsl:with-param name="NumerWniosku1" select="position()"/>
</xsl:call-template>
<!-- czwarta strona formularza -->
<xsl:call-template name="czwartaStrona">
<xsl:with-param name="NumerWniosku2" select="position()"/>
</xsl:call-template>
</xsl:for-each>
<!-- piąta strona formularza -->
<xsl:call-template name="piataStrona">
</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.7 * wielkosc czcionki w pikselach) średnia szerokość litery (mniej więcej) -->
<xsl:value-of select="$dlugoscPolaWPikselach div (0.7 * string-length($tekst))"/>
</xsl:variable>
<xsl:variable name="docelowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="ceiling($czcionkaPokrywajacaPole)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<span>
<xsl:attribute name="style">
<xsl:value-of select="concat('font-size:', $docelowyRozmiarCzcionki, 'px')"/>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</span>
</xsl:template>
<xsl:template name="formatDaty">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 9, 2)"/>
/
<xsl:value-of select="substring($wartosc, 6, 2)"/>
/
<xsl:value-of select="substring($wartosc, 1, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatKoduPocztowego">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 1, 2)"/>
-
<xsl:value-of select="substring($wartosc, 3, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatTextArea">
<xsl:param name="tekst"/>
<xsl:param name="wysokosc"/>
<xsl:param name="szerokosc"/>
<xsl:param name="bazowyRozmiarCzcionki"/>
<xsl:param name="wysokoscLini"/>
<xsl:param name="liczbaPrzejscDoNowychLini"/>
<xsl:param name="tekstPoOstatnimPrzejsciuDoNowejLini"/>
<xsl:variable name="liczbaPodPierwiastkiem">
<xsl:value-of select="($szerokosc * $wysokosc) div string-length($tekst)"/>
</xsl:variable>
<xsl:variable name="pierwiastek">
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$liczbaPodPierwiastkiem"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="czcionkaPokrywajacaPole">
<xsl:value-of select="ceiling($pierwiastek)"/>
</xsl:variable>
<xsl:variable name="rozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="$czcionkaPokrywajacaPole"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<div>
<xsl:attribute name="style">
<xsl:choose>
<xsl:when test="($szerokosc * $wysokosc) < (string-length($tekst) * $bazowyRozmiarCzcionki * $bazowyRozmiarCzcionki)">
<xsl:value-of select="concat('font-size:', $rozmiarCzcionki, 'px; word-wrap : break-word;')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'word-wrap : break-word;'"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</div>
</xsl:template>
<xsl:template name="sqrt">
<xsl:param name="number" select="0"/>
<xsl:param name="try" select="1"/>
<xsl:param name="iter" select="1"/>
<xsl:param name="maxiter" select="10"/>
<xsl:choose>
<xsl:when test="$try * $try = $number or $iter > $maxiter">
<xsl:value-of select="$try"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$number"/>
<xsl:with-param name="try" select="$try - (($try * $try - $number) div (2 * $try))"/>
<xsl:with-param name="iter" select="$iter + 1"/>
<xsl:with-param name="maxiter" select="$maxiter"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- pierwsza strona formularza -->
<xsl:template name="pierwszaStrona">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">RKZ-1</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="top: 168px; left: 0px; width: 880px; position: absolute; height: 291px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">Nazwa i adres organu prowadzącego rejestr:</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 258px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 120px; left: 3px; " class="SofLabel">03. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 133px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 120px; left: 171px; " class="SofLabel">04. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 133px; left: 171px; display: block; width: 697px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 76px; left: 3px; " class="SofLabel">02. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 89px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Nazwa organu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 841px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:NazwaOrganu"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="841"/>
<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:NazwaAdresOrganuProwadzacegoRejestr/wnio:NazwaOrganu"/>
</xsl:call-template>
</div>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 164px; left: 3px; " class="SofLabel">05. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 177px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 208px; left: 3px; " class="SofLabel">06. Numer budynku</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 221px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:NumerBudynku"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 208px; left: 195px; " class="SofLabel">07. Numer lokalu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 221px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:NumerLokalu"/>
</span>
</div>
</div>
</div>
</div>
<div style="background-color: #d2ffd2; top: 733px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 86px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Nazwa lub imię i nazwisko podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 27px; left: 13px; display: block; width: 841px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:NazwaPodmiotu"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="841"/>
<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:DaneWnioskodawcyPodmiot/wnio:NazwaPodmiotu"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="top: 463px; left: 0px; width: 880px; position: absolute; height: 266px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 10px; font-weight: bold; " class="SofLabel sectionHeader">Dane osoby reprezentującej podmiot zakładający żłobek lub klub dziecięcy, lub zatrudniający dziennego opiekuna:</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 233px; " class="SofBorderContainer">
<div style="width: 123px; font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">03. Numer PESEL</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 265px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:PESEL"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="265"/>
</xsl:call-template>
</span>
</div>
<div style="width: 856px; font-size: 12px; position: absolute; color: #000000; top: 185px; left: 3px; " class="SofLabel"/>
<div style="width: 790px; font-size: 12px; position: absolute; color: #000000; top: 201px; left: 3px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 291px; " class="SofLabel">04. Seria i numer dokumentu potwierdzającego tożsamość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 291px; display: block; width: 361px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:SeriaNumerDokumentu"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="361"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Nazwisko</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:Nazwisko"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Imię</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:Imie"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Adres poczty elektronicznej — e-mail</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 585px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:Email"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="585"/>
</xsl:call-template>
</span>
</div>
<div style="width: 126px; font-size: 12px; position: absolute; color: #000000; top: 137px; left: 611px; " class="SofLabel">06. Numer telefonu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 611px; display: block; width: 257px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:OsobaReprezentujacaPodmiot/wnio:Telefon"/>
</span>
</div>
<div style="width: 855px; font-size: 12px; position: absolute; color: #000000; top: 217px; left: 3px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="color: #000000; top: 108px; left: 13px; font-weight: normal; width: 860px; font-size: 14px; font-family: arial; position: absolute; height: 66px; " class="SofLabel global14Normal">Na podstawie art. 28 ust. 1 lub art. 46a ustawy z dnia 4 lutego 2011 r. o opiece nad dziećmi w wieku do lat 3, wnoszę o dokonanie wpisu do rejestru żłobków i klubów dziecięcych lub wykazu dziennych opiekunów oraz podmiotów ich zatrudniających.</div>
<div style="top: 822px; left: 0px; width: 880px; position: absolute; height: 396px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">Siedziba lub adres podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 363px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 171px; " class="SofLabel">03. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 171px; display: block; width: 697px; font-size: 18px; position: absolute; height: 25px; " 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:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">04. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Numer budynku</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:NumerBudynku"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 195px; " class="SofLabel">06. Numer lokalu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:NumerLokalu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 225px; left: 3px; " class="SofLabel">09. Adres poczty elektronicznej — e-mail</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 238px; left: 3px; display: block; width: 585px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:Email"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="585"/>
</xsl:call-template>
</span>
</div>
<div style="width: 457px; font-size: 12px; position: absolute; color: #000000; top: 181px; left: 315px; " class="SofLabel">08. Nazwa państwa</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 194px; left: 315px; display: block; width: 553px; font-size: 18px; border-color: #696969; position: absolute; height: 25px; " class="SofComboBox dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:NazwaPanstwa"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="553"/>
</xsl:call-template>
</span>
</div>
<div style="width: 189px; font-size: 12px; position: absolute; color: #000000; top: 181px; left: 3px; " class="SofLabel">07. Zagraniczny kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 194px; left: 3px; display: block; width: 289px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:ZagranicznyKodPocztowy"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="289"/>
</xsl:call-template>
</span>
</div>
<div style="width: 126px; font-size: 12px; position: absolute; color: #000000; top: 225px; left: 611px; " class="SofLabel">10. Numer telefonu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 238px; left: 611px; display: block; width: 257px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:Telefon"/>
</span>
</div>
<div style="width: 790px; font-size: 12px; position: absolute; color: #000000; top: 315px; left: 3px; " class="SofLabel"/>
<div style="width: 790px; font-size: 12px; position: absolute; color: #000000; top: 331px; left: 3px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 269px; left: 3px; " class="SofLabel">11. Adres strony internetowej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 282px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:SiedzibaAdresPodmiotu/wnio:AdresWWW"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 347px; left: 3px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: RKZ-1(3)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: 1/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 35px; left: 0px; font-weight: bold; width: 100%; font-size: 16px; position: absolute; text-align: center; height: 67px; " class="SofLabel formTitle">
WNIOSEK
<br/>
O WPIS DO REJESTRU ŻŁOBKÓW I KLUBÓW DZIECIĘCYCH LUB WPIS DO WYKAZU
<br/>
DZIENNYCH OPIEKUNÓW ORAZ PODMIOTÓW ICH ZATRUDNIAJĄCYCH
</div>
</div>
</xsl:template>
<!-- druga strona formularza -->
<xsl:template name="drugaStrona">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">RKZ-1</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="background-color: #d2ffd2; top: 35px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 97px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 10px; left: 13px; font-weight: bold; width: 857px; font-size: 12px; position: absolute; text-align: justify; " class="SofLabel justifiedBold">Rodzaj podmiotu prowadzącego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="color: #000000; top: 32px; left: 47px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">gmina</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 25px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:Gmina='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 32px; left: 263px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">powiat</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 25px; left: 229px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:Powiat='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 32px; left: 479px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">marszałek województwa</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 25px; left: 445px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:MarszalekWojewodztwa='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 32px; left: 694px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">instytucja publiczna</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 25px; left: 660px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:InstytucjaPubliczna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 67px; left: 47px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">osoba fizyczna</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 60px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:OsobaFizyczna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 67px; left: 263px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">osoba prawna</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 60px; left: 229px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:OsobaPrawna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 67px; left: 479px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">jednostka organizacyjna nie posiadająca osobowości prawnej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 60px; left: 445px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RodzajPodmiotu/wnio:JednostkaOrganizacyjna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #d2ffd2; top: 388px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 146px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 10px; left: 13px; font-weight: bold; width: 864px; font-size: 12px; position: absolute; " class="SofLabel sectionHeader">Numer lub indeks podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna, identyfikujący ten podmiot we właściwym rejestrze publicznym, potwierdzający jego status:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 47px; left: 13px; " class="SofLabel">Nazwa rejestru:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 60px; left: 13px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RejestrDanePodmiotu/wnio:NazwaRejestru"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 96px; left: 13px; " class="SofLabel">Numer lub indeks:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 109px; left: 13px; display: block; width: 361px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RejestrDanePodmiotu/wnio:NumerIndeks"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="361"/>
</xsl:call-template>
</span>
</div>
</div>
<div style="background-color: #d2ffd2; top: 230px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 60px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 9px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Numer REGON podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 24px; left: 13px; display: block; width: 337px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:RegonPodmiotu"/>
</span>
</div>
</div>
<div style="background-color: #d2ffd2; top: 151px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 60px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 9px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Numer NIP podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna: </div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 24px; left: 13px; display: block; width: 241px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:NipPodmiotu"/>
</span>
</div>
</div>
<div style="background-color: #d2ffd2; top: 309px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 60px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 9px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Numer PESEL podmiotu zakładającego żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 24px; left: 13px; display: block; width: 265px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="//wnio:TrescDokumentu/wnio:DaneWnioskodawcyPodmiot/wnio:PeselPodmiotu"/>
</span>
</div>
</div>
<div style="border-top: 2px solid black; top: 1170px; left: 13px; width: 0px; position: absolute; height: 0px; " class="SofHRule">
<span/>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1177px; left: 13px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1190px; left: 13px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1203px; left: 13px; " class="SofLabel"/>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: RKZ-1(3)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: 2/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- trzecia strona formularza -->
<xsl:template name="trzeciaStrona">
<xsl:param name="NumerWniosku1"/>
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">RKZ-1</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 35px; left: 10px; font-weight: bold; width: 390px; font-size: 16px; position: absolute; text-align: left; height: 27px; " class="SofLabel formTitle">WPIS DO REJESTRU / WYKAZU - <xsl:value-of select="$NumerWniosku1"/></div>
<div style="color: #000000; top: 56px; left: 6px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">CZĘŚĆ I</div>
<div style="background-color: #d2ffd2; top: 76px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 67px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">1. Forma organizacyjna opieki:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 203px; " class="SofLabel"/>
<div style="color: #000000; top: 36px; left: 71px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">żłobek</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 30px; left: 37px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:FormaOrganizacyjnaOpieki/wnio:Zlobek='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 36px; left: 221px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">klub dziecięcy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 30px; left: 187px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:FormaOrganizacyjnaOpieki/wnio:KlubDzieciecy='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 36px; left: 371px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">dzienny opiekun</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 30px; left: 337px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:FormaOrganizacyjnaOpieki/wnio:OpiekunDzienny='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #d2ffd2; top: 147px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 86px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">2. Nazwa żłobka lub klubu dziecięcego, albo imię (imiona) i nazwisko dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 27px; left: 13px; display: block; width: 841px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="wnio:NazwaZlobka"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="841"/>
<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:NazwaZlobka"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="top: 239px; left: 0px; width: 880px; position: absolute; height: 340px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 8px; left: 11px; font-weight: bold; " class="SofLabel sectionHeader">3. Adres lokalu, w którym będzie prowadzony/a żłobek, klub dziecięcy lub opieka przez dziennego opiekuna:</div>
<div style="background-color: #ffffff; width: 870px; position: absolute; top: 23px; left: 10px; height: 307px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 3px; " class="SofLabel">02. Kod pocztowy</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 3px; display: block; width: 145px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;display: block;">
<xsl:if test="wnio:AdresLokaluZlobek/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(wnio:AdresLokaluZlobek/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(wnio:AdresLokaluZlobek/wnio:KodPocztowy, 3, 4)"/>
</xsl:if>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 49px; left: 171px; " class="SofLabel">03. Miejscowość</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 62px; left: 171px; display: block; width: 697px; font-size: 18px; position: absolute; height: 25px; " 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:AdresLokaluZlobek/wnio:Miejscowosc"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="697"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 5px; left: 3px; " class="SofLabel">01. Gmina / Dzielnica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 18px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresLokaluZlobek/wnio:GminaDzielnica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 93px; left: 3px; " class="SofLabel">04. Ulica</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 106px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresLokaluZlobek/wnio:Ulica"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="865"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 3px; " class="SofLabel">05. Numer budynku</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 3px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresLokaluZlobek/wnio:NumerBudynku"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 137px; left: 195px; " class="SofLabel">06. Numer lokalu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 195px; display: block; width: 169px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresLokaluZlobek/wnio:NumerLokalu"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 181px; left: 3px; " class="SofLabel">07. Adres poczty elektronicznej — e-mail</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 194px; left: 3px; display: block; width: 585px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:AdresLokaluZlobek/wnio:Email"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="585"/>
</xsl:call-template>
</span>
</div>
<div style="width: 140px; font-size: 12px; position: absolute; color: #000000; top: 181px; left: 611px; " class="SofLabel">08. Numer telefonu</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 194px; left: 611px; display: block; width: 257px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresLokaluZlobek/wnio:Telefon"/>
</span>
</div>
<div style="width: 862px; font-size: 12px; position: absolute; color: #000000; top: 275px; left: 3px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 225px; left: 3px; " class="SofLabel">09. Adres strony internetowej</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 238px; left: 3px; display: block; width: 865px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:AdresLokaluZlobek/wnio:AdresWWW"/>
</span>
</div>
<div style="width: 862px; font-size: 12px; position: absolute; color: #000000; top: 291px; left: 3px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="background-color: #d2ffd2; top: 585px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 78px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 10px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">4. Liczba miejsc w żłobku lub klubie dziecięcym. W przypadku opiekuna dziennego podaj liczbę dzieci powierzonych opiece:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 25px; left: 13px; display: block; width: 97px; font-size: 18px; text-align: right; position: absolute; height: 25px; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:value-of select="wnio:LiczbaMiejscZlobek"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 62px; left: 13px; " class="SofLabel"/>
</div>
<div style="top: 666px; left: 0px; width: 880px; position: absolute; height: 189px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">5. Wysokość opłaty za pobyt:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 290px; " class="SofLabel">Typ opłaty:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 650px; " class="SofLabel">Wysokość opłaty PLN:</div>
<div style="background-color: #ffffff; width: 853px; position: absolute; top: 23px; left: 10px; height: 151px; " class="SofBorderContainer">
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 621px; display: block; width: 193px; font-size: 18px; position: absolute; height: 25px; text-align: right; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="translate(wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:PodstawowaOplataMiesiecznaKwota,'.',',')"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="193"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 16px; left: 820px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">zł,</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 10px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:PodstawowaOplataMiesieczna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 10px; left: 39px; font-weight: normal; width: 575px; font-size: 14px; font-family: arial; position: absolute; height: 36px; " class="SofLabel global14Normal">Opłata miesięczna - podstawowa opłata ponoszona przez rodziców za pobyt dziecka (bez zniżek i bez wyżywienia)</div>
<div style="color: #000000; top: 55px; left: 820px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">zł,</div>
<div style="color: #000000; top: 54px; left: 64px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">stawka za pobyt dziecka przekraczający 10 godzin dziennie - opłata godzinowa</div>
<div style="color: #000000; top: 86px; left: 39px; font-weight: normal; width: 575px; font-size: 14px; font-family: arial; position: absolute; height: 34px; " class="SofLabel global14Normal">Opłata godzinowa - podstawowa opłata ponoszona przez rodziców za pobyt dziecka (bez zniżek i bez wyżywienia).</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 86px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:PodstawowaOplataGodzinowa='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 47px; left: 621px; display: block; width: 193px; font-size: 18px; position: absolute; height: 25px; text-align: right; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="translate(wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:StawkaGodzinowaPrzekroczenie10GodzinKwota,'.',',')"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="193"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 86px; left: 621px; display: block; width: 193px; font-size: 18px; position: absolute; height: 25px; text-align: right; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="translate(wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:PodstawowaOplataGodzinowaKwota,'.',',')"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="193"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 47px; left: 27px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:OplatyZaPobyt/wnio:StawkaGodzinowaPrzekroczenie10Godzin='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 94px; left: 820px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">zł,</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 132px; left: 3px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="top: 837px; left: 0px; width: 880px; position: absolute; height: 118px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">6. Wysokość opłaty za wyżywienie:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 290px; " class="SofLabel">Typ opłaty:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 650px; " class="SofLabel">Wysokość opłaty PLN:</div>
<div style="background-color: #ffffff; width: 853px; position: absolute; top: 23px; left: 10px; height: 80px; " class="SofBorderContainer">
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 621px; display: block; width: 193px; font-size: 18px; position: absolute; height: 25px; text-align: right; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="translate(wnio:RodzajeOplat/wnio:OplatyZaWyzywienie/wnio:OplataMiesiecznaKwota,'.',',')"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="193"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 15px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">zł,</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 43px; left: 621px; display: block; width: 193px; font-size: 18px; position: absolute; height: 25px; text-align: right; " class="SofTextInput">
<span style="padding-left:5px ;line-height:25px;padding-right: 5px; display: block;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="translate(wnio:RodzajeOplat/wnio:OplatyZaWyzywienie/wnio:OplataDziennaKwota,'.',',')"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="193"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 50px; left: 820px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">zł,</div>
<div style="color: #000000; top: 15px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Opłata za wyżywienie - miesięczna</div>
<div style="color: #000000; top: 50px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Opłata za wyżywienie - dzienna</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 9px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:OplatyZaWyzywienie/wnio:OplataMiesieczna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 44px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:OplatyZaWyzywienie/wnio:OplataDzienna='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
</div>
</div>
<div style="top: 963px; left: 0px; width: 880px; position: absolute; height: 258px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 100%; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 100%; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">7. Zniżki:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 290px; " class="SofLabel">Typ zniżki:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 733px; " class="SofLabel">Wysokość zniżki %:</div>
<div style="background-color: #ffffff; width: 853px; position: absolute; top: 23px; left: 10px; height: 220px; " class="SofBorderContainer">
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:Wielodzietnosc='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 43px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DzieckoSamotnieWychowywane='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 78px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DzieckoNiepelnosprawne='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 113px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DochodRodziny='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 148px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:RodzenstwoInstytucja='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 183px; left: 3px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:Inne='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 14px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Wielodzietność/Karta Dużej Rodziny</div>
<div style="color: #000000; top: 49px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Samotne wychowanie dziecka</div>
<div style="color: #000000; top: 84px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Dziecko niepełnosprawne lub wymagające szczególnej opieki</div>
<div style="color: #000000; top: 119px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Dochód rodzinny</div>
<div style="color: #000000; top: 154px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Rodzeństwo uczęszczające do instytucji</div>
<div style="color: #000000; top: 189px; left: 39px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Inne</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 183px; left: 79px; display: block; width: 509px; font-size: 18px; position: absolute; height: 38px; " 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:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:InneOpis"/>
<xsl:with-param name="wysokosc" select="38"/>
<xsl:with-param name="szerokosc" select="509"/>
<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:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:InneOpis"/>
</xsl:call-template>
</div>
</div>
<div style="color: #000000; top: 16px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:WielodzietnoscZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 148px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:RodzenstwoInstytucjaZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 183px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:InneZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 43px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DzieckoSamotnieWychowywaneZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 113px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DochodRodzinyZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 78px; left: 766px; display: block; width: 48px; font-size: 18px; text-align: right; position: absolute; height: 27px; " class="SofTextInput">
<span style="padding-left: 5px;display: block;line-height:27px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:RodzajeOplat/wnio:ZnizkiProcentowo/wnio:DzieckoNiepelnosprawneZnizka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="72"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 51px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
<div style="color: #000000; top: 86px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
<div style="color: #000000; top: 121px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
<div style="color: #000000; top: 156px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
<div style="color: #000000; top: 191px; left: 821px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">%</div>
</div>
</div>
</div>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: RKZ-1(3)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="$NumerWniosku1 * 2 + 1"/>/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- czwarta strona -->
<xsl:template name="czwartaStrona">
<xsl:param name="NumerWniosku2"/>
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; page-break-after: always; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">RKZ-1</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="top: 30px; left: 0px; width: 880px; position: absolute; height: 327px; ">
<div style="background-color: #d2ffd2; top: 0px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 327px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">8. Godziny otwarcia/sprawowania opieki:</div>
<!-- dynamiczna sekcja Godziny sprawowania opieki -->
<div style="width: 855px; position: absolute; top: 23px; left: 10px;">
<xsl:for-each select="wnio:GodzinySprawowaniaOpieki/wnio:DzienGodzinyOdDo">
<xsl:call-template name="GodzinyOpieki">
<xsl:with-param name="NumerWiersza" select="position()"/>
</xsl:call-template>
</xsl:for-each>
</div>
<div style="background-color: #ffffff; width: 853px; position: absolute; top: 250px; left: 10px; height: 77px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 0px; left: 3px; " class="SofLabel">Uwagi:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 13px; left: 3px; display: block; width: 841px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="wnio:GodzinySprawowaniaOpieki/wnio:Uwagi"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="841"/>
<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:GodzinySprawowaniaOpieki/wnio:Uwagi"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 300px; " class="SofLabel">Dzień tygodnia:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 590px; " class="SofLabel">Godzina od:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 755px; " class="SofLabel">Godzina do:</div>
</div>
</div>
<div style="background-color: #d2ffd2; top: 360px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 320px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 10px; left: 13px; font-weight: normal; width: 823px; font-size: 14px; font-family: arial; position: absolute; height: 50px; " class="SofLabel global14Normal">9. Zaznacz, jeśli żłobek lub klub dziecięcy jest dostosowany do potrzeb dzieci niepełnosprawnych lub wymagających szczególnej opieki</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 45px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:ZatrudnienieSpecjalistow='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 80px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:SprzetRehabilitacyjny='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 115px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:SpecjalistyczneNarzedzia='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 150px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:UdogodnieniaArchitektoniczne='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 185px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:UdogodnieniaDzieciNiewidome='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 53px; left: 47px; font-weight: normal; width: 503px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">kadra zatrudnionych specjalistów, m.in.: rehabilitanci, logopedzi, psycholodzy</div>
<div style="color: #000000; top: 86px; left: 47px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">specjalistyczny sprzęt rehabilitacyjny</div>
<div style="color: #000000; top: 115px; left: 47px; font-weight: normal; width: 780px; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">specjalistyczne narzędzia do rozpoznawania potrzeb rozwojowych i edukacyjnych oraz możliwości psychofizycznych dzieci, wspomagania rozwoju i prowadzenia terapii dzieci ze specjalnymi potrzebami edukacyjnymi</div>
<div style="color: #000000; top: 152px; left: 47px; font-weight: normal; width: 780px; font-size: 14px; font-family: arial; position: absolute; height: 42px; " class="SofLabel global14Normal">udogodnienia architektoniczne dla dzieci niepełnosprawnych ruchowo, np. pochylnia, pojazd, winda, drzwi otwierane automatycznie</div>
<div style="color: #000000; top: 193px; left: 47px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">udogodnienia dla dzieci niewidomych</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 220px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:InneDostosowania='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
<div style="color: #000000; top: 228px; left: 47px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">inne dostosowania</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 255px; left: 47px; display: block; width: 787px; font-size: 18px; position: absolute; height: 54px; " class="SofTextArea dotted">
<div style="padding-left:5px ; padding-top:2px; display: block;">
<xsl:call-template name="formatTextArea">
<xsl:with-param name="tekst" select="wnio:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:InneDostosowaniaOpis"/>
<xsl:with-param name="wysokosc" select="54"/>
<xsl:with-param name="szerokosc" select="787"/>
<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:ZlobekDostosowanieDzieciNiepelnosprawne/wnio:InneDostosowaniaOpis"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="color: #000000; top: 690px; left: 6px; font-weight: bold; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Bold">CZĘŚĆ II - OŚWIADCZENIA I POUCZENIA</div>
<div style="background-color: #d2ffd2; top: 710px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 43px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 14px; left: 47px; font-size: 14px; position: absolute; text-align: justify; height: 21px; " class="SofLabel justified14">Niniejszym oświadczam, że dokonałam/łem opłaty za wpis do rejestru.</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:Oswiadczenia/wnio:OplataZaWpisDoRejestru='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #d2ffd2; top: 756px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 43px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 8px; left: 47px; width: 820px; font-size: 14px; position: absolute; text-align: justify; height: 37px; " class="SofLabel justified14">Oświadczam, że podmiot zakładający żłobek lub klub dziecięcy posiada tytuł prawny do lokalu, w którym będzie prowadzony żłobek lub klub dziecięcy.</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:Oswiadczenia/wnio:TytulPrawnyDoLokaluPodmiot='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #d2ffd2; top: 802px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 43px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 8px; left: 47px; width: 820px; font-size: 14px; position: absolute; text-align: justify; height: 37px; " class="SofLabel justified14">Oświadczam, że podmiot zatrudniający dziennego opiekuna lub wskazany we wniosku dzienny opiekun posiada tytuł prawny do lokalu, w którym będzie prowadzona opieka przez dziennego opiekuna.</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:Oswiadczenia/wnio:TytulPrawnyDoLokaluOpiekun='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="background-color: #d2ffd2; top: 848px; left: 0px; width: 880px; border-color: #d2ffd2; position: absolute; height: 265px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 8px; left: 47px; width: 823px; font-size: 14px; position: absolute; text-align: justify; height: 59px; " class="SofLabel justified14">Oświadczam, że podmiot zatrudniający dziennego opiekuna zweryfikował spełnianie przez dziennego opiekuna warunków, o których mowa w art. 39 ust. 1, zgodnie z którym dziennym opiekunem może być osoba, która:</div>
<div style="color: #000000; top: 48px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">1)</div>
<div style="color: #000000; top: 48px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">daje rękojmię należytego sprawowania opieki na dziećmi;</div>
<div style="color: #000000; top: 66px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">2)</div>
<div style="color: #000000; top: 66px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">nie jest i nie była pozbawiona władzy rodzicielskiej oraz władza rodzicielska nie została jej zawieszona ani ograniczona;</div>
<div style="color: #000000; top: 84px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">3)</div>
<div style="color: #000000; top: 84px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">wypełnia obowiązek alimentacyjny w przypadku, gdy taki obowiązek został nałożony na podstawie tytułu wykonawczego pochodzącego lub zatwierdzonego przez sąd;</div>
<div style="color: #000000; top: 114px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">4)</div>
<div style="color: #000000; top: 114px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">nie figuruje w bazie danych Rejestru Sprawców Przestępstw na Tle Seksualnym z dostępem ograniczonym lub nie została skazana prawomocnym wyrokiem za inne przestępstwo umyślne;</div>
<div style="color: #000000; top: 144px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">5)</div>
<div style="color: #000000; top: 144px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">posiada warunki lokalowe zapewniające bezpieczną opiekę nad dzieckiem;</div>
<div style="color: #000000; top: 160px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">6)</div>
<div style="color: #000000; top: 160px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 129px; " class="SofLabel justified12">odbyła 160 godz. szkolenie albo 40 godz. szkolenie uzupełniające w tym z zakresu udzielania dziecku pierwszej pomocy jeśli posiada kwalifikacje pielęgniarki, położnej, opiekunki dziecięcej, nauczyciela wychowania przedszkolnego, nauczyciela edukacji wczesnoszkolnej lub pedagoga wczesnej edukacji, terapeuty pedagogicznego albo ukończyła studia lub studia podyplomowe na kierunku lub specjalności wczesne wspomaganie rozwoju, wspomaganie rozwoju dzieci w ramach pomocy psychologiczno-pedagogicznej w żłobkach i przedszkolach, edukacja prorozwojowa, pedagogika małego dziecka, psychologia dziecięca, psychologia wspierania rozwoju i kształcenia lub psychologia wychowawcza (albo pracowała z dziećmi w wieku do lat 3 przez okres co najmniej 12 miesięcy bezpośrednio przez podjęciem zatrudnienia jako dzienny opiekun);</div>
<div style="color: #000000; top: 248px; left: 47px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">7)</div>
<div style="color: #000000; top: 248px; left: 67px; width: 805px; font-size: 12px; position: absolute; height: 59px; " class="SofLabel justified12">odbyła nie później niż 2 lata przed rozpoczęciem pełnienia funkcji dziennego opiekuna szkolenie z udzielania dziecku pierwszej pomocy.</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 8px; left: 13px; display: block; width: 25px; font-size: 14px; position: absolute; height: 25px; " class="SofCheckBox">
<xsl:if test="wnio:Oswiadczenia/wnio:ZweryfikowanieOpiekunaArt39Ust1='true'">
<span style="text-align: center ; line-height: 25px; display: block; ">X</span>
</xsl:if>
</div>
</div>
<div style="border-top: 2px solid black; top: 1115px; left: 13px; width: 0px; position: absolute; height: 0px; " class="SofHRule">
<span/>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1122px; left: 13px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1137px; left: 13px; " class="SofLabel"/>
<div style="width: 867px; font-size: 12px; position: absolute; color: #000000; top: 1151px; left: 13px; " class="SofLabel"/>
<div style="color: #000000; top: 1180px; left: 28px; width: 805px; font-size: 12px; position: absolute; height: 49px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1166px; left: 13px; " class="SofLabel"/>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: RKZ-1(3)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="$NumerWniosku2 * 2 + 2"/>/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- piąta strona formularza -->
<xsl:template name="piataStrona">
<div style="background-color: white; border: 1px solid black; margin-left: auto; overflow: hidden; width: 880px; margin-top: 15px; position: relative; margin-bottom: 15px; height: 1280px; margin-right: auto; text-align: left; ">
<div style="top: 0px; left: 0px; width: 880px; position: absolute; height: 26px; ">
<div style="color: #000000; top: 0px; left: 322px; font-weight: bold; width: 545px; font-size: 20px; position: absolute; height: 24px; text-align: right; " class="SofLabel formName">RKZ-1</div>
<span style="color: #000000; top: 8px; left: 5px; font-weight: normal; width: 300px; font-size: 12px; position: absolute; height: 14px; " class="SofLabel page"/>
<div style="border-top: 2px solid black; top: 25px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<div style="color: #000000; top: 40px; left: 13px; font-weight: bold; width: 399px; font-size: 14px; position: absolute; text-align: justify; height: 21px; " class="SofLabel justified14Bold">Do wniosku należy dołączyć:</div>
<div style="color: #000000; top: 64px; left: 11px; width: 40px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">-</div>
<div style="color: #000000; top: 84px; left: 25px; width: 850px; font-size: 14px; position: absolute; text-align: justify; height: 32px; " class="SofLabel justified14">zaświadczenie o niekaralności za przestępstwo popełnione umyślnie,</div>
<div style="color: #000000; top: 84px; left: 13px; width: 40px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">-</div>
<div style="color: #000000; top: 64px; left: 24px; width: 850px; font-size: 14px; position: absolute; text-align: justify; height: 22px; " class="SofLabel justified14">decyzję potwierdzającą spełnienie wymagań przeciwpożarowych, o której mowa w art. 25 ust. 2,</div>
<div style="color: #000000; top: 104px; left: 13px; width: 40px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">-</div>
<div style="color: #000000; top: 104px; left: 25px; width: 820px; font-size: 14px; position: absolute; text-align: justify; height: 31px; " class="SofLabel justified14">decyzję właściwego państwowego inspektora sanitarnego potwierdzającą spełnienie wymagań sanitarno-lokalowych, o której mowa w art. 25 ust. 2a lit a,</div>
<div style="color: #000000; top: 138px; left: 13px; width: 40px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">-</div>
<div style="color: #000000; top: 138px; left: 25px; width: 828px; font-size: 14px; position: absolute; text-align: justify; height: 29px; " class="SofLabel justified14">opinię wójta, burmistrza, prezydenta miasta potwierdzającą spełnienie wymagań sanitarno-lokalowych, o której mowa w art. 25 ust. 2a lit b,</div>
<div style="color: #000000; top: 173px; left: 13px; width: 40px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">-</div>
<div style="color: #000000; top: 173px; left: 25px; width: 847px; font-size: 14px; position: absolute; text-align: justify; height: 40px; " class="SofLabel justified14">pełnomocnictwo lub inny dokument poświadczający uprawnienie do złożenia wniosku przez wnioskodawcę na rzecz podmiotu, o którym mowa w CZĘŚCI I chyba, że umocowanie wynika wprost z rejestrów publicznych, np. CEIDG lub KRS.</div>
<div style="color: #000000; top: 239px; left: 13px; font-weight: normal; width: 305px; font-size: 14px; font-family: arial; position: absolute; height: 16px; " class="SofLabel global14Normal">Do wniosku dołączam następujące dokumenty:</div>
<div style="color: #000000; top: 270px; left: 13px; font-weight: normal; width: 16px; font-size: 14px; font-family: arial; position: absolute; height: 20px; " class="SofLabel global14Normal">1)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 263px; left: 37px; display: block; width: 843px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik1"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="843"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 305px; left: 13px; font-weight: normal; width: 16px; font-size: 14px; font-family: arial; position: absolute; height: 20px; " class="SofLabel global14Normal">2)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 298px; left: 37px; display: block; width: 843px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik2"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="843"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 340px; left: 13px; font-weight: normal; width: 18px; font-size: 14px; font-family: arial; position: absolute; height: 20px; " class="SofLabel global14Normal">3)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 333px; left: 37px; display: block; width: 843px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik3"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="843"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 375px; left: 13px; font-weight: normal; width: 18px; font-size: 14px; font-family: arial; position: absolute; height: 20px; " class="SofLabel global14Normal">4)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 368px; left: 37px; display: block; width: 843px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="//wnio:TrescDokumentu/wnio:ZalaczoneDokumenty/wnio:Zalacznik4"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="843"/>
</xsl:call-template>
</span>
</div>
<div style="color: #000000; top: 468px; left: 30px; font-weight: normal; font-size: 14px; font-family: arial; font-style: italic; position: absolute; " class="SofLabel global14Italic">Oświadczam, że jestem świadoma/świadomy odpowiedzialności karnej za złożenie fałszywego oświadczenia.</div>
<div style="border-top: 2px solid black; top: 1167px; left: 13px; width: 100px; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1176px; left: 13px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1189px; left: 13px; " class="SofLabel"/>
<div style="font-size: 12px; position: absolute; color: #000000; top: 1202px; left: 13px; " class="SofLabel"/>
<div style="top: 1223px; left: 0px; width: 880px; position: absolute; height: 16px; ">
<div style="color: #000000; top: 3px; left: 559px; width: 300px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: right; " class="SofLabel footnote">wersja: RKZ-1(3)</div>
<div style="color: #000000; top: 3px; left: 10px; width: 850px; font-size: 11px; font-family: verdana; position: absolute; height: 14px; text-align: center; " class="SofLabel footnote">strona: <xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/>/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWpisRejestrZlobkow/wnio:Wniosek) * 2 + 3"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
</div>
</xsl:template>
<!-- godziny sprawowania opieki -->
<xsl:template name="GodzinyOpieki">
<xsl:param name="NumerWiersza"/>
<div style="background-color: #ffffff; width: 855px; position: relative; margin-top: 0px; margin-left: 10px; height: 32px; " class="SofBorderContainer">
<div style="font-size: 12px; position: absolute; color: #000000; top: 2px; left: 13px; " class="SofLabel"><xsl:value-of select="$NumerWiersza"/>)</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 2px; left: 40px; display: block; width: 479px; font-size: 18px; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:DzienTygodnia"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="479"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 2px; left: 552px; display: block; width: 130px; font-size: 18px; text-align:center; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:GodzinaOd"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="130"/>
</xsl:call-template>
</span>
</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 2px; left: 725px; display: block; width: 130px; font-size: 18px; text-align:center; position: absolute; height: 25px; " class="SofTextInput dotted">
<span style="padding-left: 5px;display: block;line-height:25px;">
<xsl:call-template name="redukcjaCzcionki">
<xsl:with-param name="tekst" select="wnio:GodzinaDo"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="130"/>
</xsl:call-template>
</span>
</div>
</div>
</xsl:template>
</xsl:stylesheet>