9167
ID | 9167 |
Data | 2020-03-02 |
Symbol | 2020/03/02/9167 |
Instytucja | Ministerstwo Rodziny, Pracy i Polityki Społecznej |
Nazwa | Wniosek o wykreślenie z rejestru żłobków i klubów dziecięcych lub wykreślenie z wykazu dziennych opiekunów oraz podmiotów ich zatrudniających - RKZ-3 |
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/9167/" 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-3 - 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:WnioskiWykreslenieRejestrZlobkow/wnio:Wniosek">
<!-- trzecia strona formularza -->
<xsl:call-template name="trzeciaStrona">
<xsl:with-param name="NumerWniosku" select="position()"/>
</xsl:call-template>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template match="wnio:Informacja1//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja2//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja3//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="wnio:Informacja4//*">
<xsl:call-template name="Info">
<xsl:with-param name="node" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="Info">
<xsl:choose>
<xsl:when test="name(.) = 'TextFlow'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="name(.) = 'br'">
<xsl:choose>
<xsl:when test="name(..) = 'dl'">
<xsl:apply-templates/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(.)}">
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(.)}">
<xsl:for-each select="@*">
<xsl:attribute name="{name(.)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="redukcjaCzcionki">
<xsl:param name="tekst"/>
<xsl:param name="bazowyRozmiarCzcionki"/>
<xsl:param name="dlugoscPolaWPikselach"/>
<xsl:variable name="czcionkaPokrywajacaPole">
<!-- (0.6 * wielkosc czcionki w pikselach) średnia szerokość litery (mniej więcej) -->
<xsl:value-of select="$dlugoscPolaWPikselach div (0.6 * string-length($tekst))"/>
</xsl:variable>
<xsl:variable name="docelowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="ceiling($czcionkaPokrywajacaPole)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<span>
<xsl:attribute name="style">
<xsl:value-of select="concat('font-size:', $docelowyRozmiarCzcionki, 'px')"/>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</span>
</xsl:template>
<xsl:template name="formatDaty">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 9, 2)"/>
/
<xsl:value-of select="substring($wartosc, 6, 2)"/>
/
<xsl:value-of select="substring($wartosc, 1, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatKoduPocztowego">
<xsl:param name="wartosc"/>
<xsl:if test="$wartosc != ''">
<xsl:value-of select="substring($wartosc, 1, 2)"/>
-
<xsl:value-of select="substring($wartosc, 3, 4)"/>
</xsl:if>
</xsl:template>
<xsl:template name="formatTextArea">
<xsl:param name="tekst"/>
<xsl:param name="wysokosc"/>
<xsl:param name="szerokosc"/>
<xsl:param name="bazowyRozmiarCzcionki"/>
<xsl:param name="wysokoscLini"/>
<xsl:param name="liczbaPrzejscDoNowychLini"/>
<xsl:param name="tekstPoOstatnimPrzejsciuDoNowejLini"/>
<xsl:variable name="liczbaPodPierwiastkiem">
<xsl:value-of select="($szerokosc * $wysokosc) div string-length($tekst)"/>
</xsl:variable>
<xsl:variable name="pierwiastek">
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$liczbaPodPierwiastkiem"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="czcionkaPokrywajacaPole">
<xsl:value-of select="ceiling($pierwiastek)"/>
</xsl:variable>
<xsl:variable name="rozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < $bazowyRozmiarCzcionki">
<xsl:choose>
<xsl:when test="$czcionkaPokrywajacaPole < 6">6</xsl:when>
<!--6 minimalny rozmiar czcionki -->
<xsl:otherwise>
<xsl:value-of select="$czcionkaPokrywajacaPole"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$bazowyRozmiarCzcionki"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<div>
<xsl:attribute name="style">
<xsl:choose>
<xsl:when test="($szerokosc * $wysokosc) < (string-length($tekst) * $bazowyRozmiarCzcionki * $bazowyRozmiarCzcionki)">
<xsl:value-of select="concat('font-size:', $rozmiarCzcionki, 'px; word-wrap : break-word;')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'word-wrap : break-word;'"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:value-of select="$tekst"/>
</div>
</xsl:template>
<xsl:template name="sqrt">
<xsl:param name="number" select="0"/>
<xsl:param name="try" select="1"/>
<xsl:param name="iter" select="1"/>
<xsl:param name="maxiter" select="10"/>
<xsl:choose>
<xsl:when test="$try * $try = $number or $iter > $maxiter">
<xsl:value-of select="$try"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sqrt">
<xsl:with-param name="number" select="$number"/>
<xsl:with-param name="try" select="$try - (($try * $try - $number) div (2 * $try))"/>
<xsl:with-param name="iter" select="$iter + 1"/>
<xsl:with-param name="maxiter" select="$maxiter"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- pierwsza strona formularza -->
<xsl:template name="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-3</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: 166px; 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:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:NazwaAdresOrganuProwadzacegoRejestr/wnio:DaneAdresoweOrganu/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//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: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: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: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: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: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: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: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: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Nazwa lub imię i nazwisko podmiotu prowadzą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: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:DaneWnioskodawcyPodmiot/wnio:NazwaPodmiotu"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="top: 462px; 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 prowadzą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: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: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: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: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: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: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="top: 824px; left: 0px; width: 880px; position: absolute; height: 395px; ">
<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 prowadzą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: 362px; " 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:SiedzibaAdresPodmiotu/wnio:KodPocztowy!= ''">
<xsl:value-of select="substring(//wnio:SiedzibaAdresPodmiotu/wnio:KodPocztowy, 1, 2)"/>
-
<xsl:value-of select="substring(//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: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: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: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: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: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: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: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: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: 143px; 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: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:SiedzibaAdresPodmiotu/wnio:AdresWWW"/>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 346px; left: 3px; " class="SofLabel"/>
</div>
</div>
</div>
<div style="color: #000000; top: 104px; left: 20px; width: 825px; font-size: 14px; position: absolute; text-align: left; height: 59px; " class="SofLabel justified14">Na podstawie art. 32 pkt 1 lub art. 47 ustawy z dnia 4 lutego 2011 r. o opiece nad dziećmi w wieku do lat 3, wnoszę o wykreślenie z rejestru żłobków i klubów dziecięcych wskazanego niżej żłobka/klubu dziecięcego lub informuję o rozwiązaniu lub wygaśnięciu umowy z dziennym opiekunem.</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-3(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:WnioskiWykreslenieRejestrZlobkow/wnio:Wniosek) + 2"/></div>
<div style="border-top: 2px solid black; top: 1px; left: 0px; width: 100%; position: absolute; height: 1px; " class="SofHRule">
<span/>
</div>
</div>
<span style="color: #000000; top: 40px; left: 0px; font-weight: bold; width: 100%; font-size: 16px; position: absolute; text-align: center; height: 60px; " class="SofLabel formTitle">WNIOSEK O WYKREŚLENIE Z REJESTRU ŻŁOBKÓW I KLUBÓW DZIECIĘCYCH LUB WYKREŚLENIE Z WYKAZU DZIENNYCH OPIEKUNÓW ORAZ PODMIOTÓW ICH ZATRUDNIAJĄCYCH</span>
</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-3</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: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: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: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: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: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: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: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: 151px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 59px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Numer NIP podmiotu, który prowadzi żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 22px; 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:DaneWnioskodawcyPodmiot/wnio:NipPodmiotu"/>
</span>
</div>
</div>
<div style="background-color: #d2ffd2; top: 307px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 59px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 14px; font-weight: bold; " class="SofLabel sectionHeader">Numer PESEL podmiotu, który prowadzi żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 22px; left: 14px; 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:DaneWnioskodawcyPodmiot/wnio:PeselPodmiotu"/>
</span>
</div>
</div>
<div style="background-color: #d2ffd2; top: 385px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 149px; " class="SofBorderContainer greenAll">
<div style="color: #000000; top: 7px; left: 13px; font-weight: bold; width: 864px; font-size: 12px; position: absolute; height: 35px; " class="SofLabel sectionHeader">Numer lub indeks podmiotu, który prowadzi żł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: 46px; left: 13px; " class="SofLabel">Nazwa rejestru:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 61px; left: 13px; display: block; width: 841px; 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:RejestrDanePodmiotu/wnio:NazwaRejestru"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="841"/>
</xsl:call-template>
</span>
</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 97px; left: 13px; " class="SofLabel">Numer lub indeks:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 112px; 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: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: 229px; left: 0px; width: 880px; border-color: #d2ffd2; border-width: 1px; position: absolute; border-style: solid; height: 59px; " class="SofBorderContainer greenAll">
<div style="font-size: 12px; position: absolute; color: #000000; top: 7px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">Numer REGON podmiotu, który prowadzi żłobek, klub dziecięcy lub zatrudniającego dziennego opiekuna:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 22px; 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:DaneWnioskodawcyPodmiot/wnio:RegonPodmiotu"/>
</span>
</div>
</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-3(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:WnioskiWykreslenieRejestrZlobkow/wnio:Wniosek) + 2"/></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="border-top: 2px solid black; top: 1170px; left: 13px; width: 0px; position: absolute; height: 0px; " class="SofHRule">
<span/>
</div>
</div>
</xsl:template>
<!-- trzecia strona formularza -->
<xsl:template name="trzeciaStrona">
<xsl:param name="NumerWniosku"/>
<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-3</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: 350px; font-size: 16px; position: absolute; text-align: center; height: 27px; " class="SofLabel formTitle">WYKREŚLENIE Z REJESTRU / WYKAZU - <xsl:value-of select="$NumerWniosku"/></div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 140px; left: 13px; font-weight: bold; " class="SofLabel sectionHeader">1. Forma organizacyjna opieki:</div>
<div style="font-size: 12px; position: absolute; color: #000000; top: 140px; left: 203px; " class="SofLabel"/>
<div style="color: #000000; top: 166px; 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: 160px; 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: 166px; left: 195px; 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: 160px; left: 161px; 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: 166px; left: 364px; 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: 160px; left: 330px; 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 style="background-color: #d2ffd2; top: 207px; 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: 7px; 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: 323px; left: 0px; width: 880px; position: absolute; height: 265px; ">
<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 jest 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: 232px; " 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: 126px; font-size: 12px; position: absolute; color: #000000; top: 181px; left: 611px; " class="SofLabel">8. 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>
</div>
</div>
<div style="background-color: #ffffff; top: 33px; left: 485px; width: 390px; border-width: 1px; position: absolute; border-style: solid; height: 82px; " class="SofBorderContainer">
<div style="color: #000000; top: 10px; left: 20px; font-weight: normal; font-size: 14px; font-family: arial; position: absolute; " class="SofLabel global14Normal">Numer wpisu do rejestru lub wykazu:</div>
<div style="border: 1px solid black; background-color: white; overflow: hidden; color: #000000; top: 45px; left: 20px; 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:NumerZlobka"/>
<xsl:with-param name="bazowyRozmiarCzcionki" select="18"/>
<xsl:with-param name="dlugoscPolaWPikselach" select="361"/>
</xsl:call-template>
</span>
</div>
</div>
<div style="color: #000000; top: 670px; left: 30px; font-weight: normal; font-size: 14px; font-family: arial; font-style: italic; position: absolute; " class="SofLabel global14Italic">Oświadczam, że jestem świadoma/świadomy odpowiedzialności karnej za złożenie fałszywego oświadczenia.</div>
<div style="top: 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-3(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="$NumerWniosku + 2"/>/<xsl:value-of select="count(//wnio:TrescDokumentu/wnio:WnioskiWykreslenieRejestrZlobkow/wnio:Wniosek) + 2"/></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>
</xsl:stylesheet>