PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u491334613/domains/globalreliefbridge.org/public_html/

Viewing File: zakat.php

<?php
// Start the session
session_start();

// Initialize the cart
if (!isset($_SESSION['cart'])) {
    $_SESSION['cart'] = [];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Zakat & Sadaqah - Global Relief Bridge</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        /* --- 1. VARIABLES --- */
        :root {
            /* Zakat Theme: Gold & Deep Green */
            --zakat-gold: #c5a017;
            --zakat-dark: #8a6d0b;
            --action-blue: #007BFF; /* Kept for cart consistency */
            --text-dark: #333;
            --bg-light: #f9f7f2; /* Warmer background */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; border-radius: 15px; }

        /* --- 2. LAYOUT UTILITIES --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 60px 0; }
        .text-center { text-align: center; }
        .section-title { font-size: 2.2rem; color: #333; margin-bottom: 15px; font-weight: 800; }
        
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        
        /* Product Layout */
        .product-grid { 
            display: grid; grid-template-columns: 1fr 1fr; gap: 50px; 
            background: white; padding: 40px; border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            align-items: start;
        }

        /* --- 3. COMPONENTS --- */
        .btn { padding: 12px 25px; border-radius: 50px; font-weight: 700; cursor: pointer; border: none; transition: 0.3s; display: inline-block; text-align: center; }
        .btn-outline { border: 2px solid #ddd; background: transparent; color: #555; }
        .btn-outline:hover { border-color: #333; color: #333; }
        
        /* Zakat Specific Buttons */
        .btn-gold { background-color: var(--zakat-gold); color: white; width: 100%; font-size: 1.1rem; padding: 15px; }
        .btn-gold:hover { background-color: var(--zakat-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(197, 160, 23, 0.4); }
        .btn-blue { background-color: var(--action-blue); color: white; } /* For Cart */

        .card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s; }
        .card:hover { transform: translateY(-10px); }

        /* --- 4. SLIDER STYLES --- */
        .slider-container { position: relative; border-radius: 15px; overflow: hidden; margin-bottom: 15px; }
        .main-img { width: 100%; height: 400px; object-fit: cover; transition: 0.3s; }
        .thumbs { display: flex; gap: 10px; overflow-x: auto; }
        .thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 10px; cursor: pointer; opacity: 0.6; transition: 0.3s; border: 2px solid transparent; }
        .thumb.active { opacity: 1; border-color: var(--zakat-gold); }
        .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--text-dark); z-index: 10; }
        .prev { left: 10px; } .next { right: 10px; }

        /* --- 5. DONATION WIDGET STYLES --- */
        .donation-widget { background: #fffdf5; padding: 30px; border-radius: 15px; border: 1px solid #eaddab; }
        .input-group { margin-bottom: 20px; }
        .input-label { display: block; font-weight: 700; margin-bottom: 10px; color: #6d5800; }
        .custom-select { width: 100%; padding: 15px; border-radius: 10px; border: 1px solid #e0cea4; font-size: 1rem; outline: none; background: white; }
        
        .amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
        .amt-btn { padding: 12px; border: 1px solid #e0cea4; background: white; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.2s; text-align: center; color: #8a6d0b; }
        .amt-btn:hover { border-color: var(--zakat-gold); color: var(--zakat-gold); }
        .amt-btn.selected { background: var(--zakat-gold); color: white; border-color: var(--zakat-gold); }
        
        .custom-input { width: 100%; padding: 12px; border: 1px solid #e0cea4; border-radius: 8px; margin-top: 10px; display: none; }
        
        /* Highlight box for Zakat explanation */
        .info-box { background: rgba(197, 160, 23, 0.1); padding: 15px; border-radius: 10px; font-size: 0.9rem; color: #555; margin-bottom: 20px; border-left: 4px solid var(--zakat-gold); }

        /* --- 6. CART OVERLAY --- */
        .cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 3000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
        .cart-overlay.active { display: flex; }
        .cart-box { background: white; width: 90%; max-width: 400px; border-radius: 25px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
        .cart-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; }
        .success-banner { background: #d4edda; color: #155724; padding: 10px; border-radius: 10px; margin-bottom: 15px; display: none; text-align: center; }
        .cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
        .cart-total { display: flex; justify-content: space-between; font-weight: bold; font-size: 1.2rem; margin: 20px 0; border-top: 2px solid #eee; padding-top: 15px; }

        @media (max-width: 900px) {
            .product-grid { grid-template-columns: 1fr; padding: 20px; }
            .grid-3 { grid-template-columns: 1fr; }
            .main-img { height: 250px; }
        }
    </style>
</head>
<body>

    <?php include 'header.php'; ?>

    <section class="section container">
        <div class="product-grid">
            
            <div>
                <div class="slider-container">
                    <button class="slider-btn prev" onclick="moveSlide(-1)">&#8249;</button>
                    <img id="mainImage" src="img/zakat1.jpg" class="main-img" onerror="this.src='https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?q=80&w=800'">
                    <button class="slider-btn next" onclick="moveSlide(1)">&#8250;</button>
                </div>
                <div class="thumbs">
                    <img src="img/zakat1.jpg" class="thumb active" onclick="setSlide(0, this)" onerror="this.src='https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?q=80&w=200'">
                    <img src="img/zakat2.jpg" class="thumb" onclick="setSlide(1, this)" onerror="this.src='https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=200'">
                    <img src="img/zakat3.jpg" class="thumb" onclick="setSlide(2, this)" onerror="this.src='https://images.unsplash.com/photo-1518458028785-8fbcd101ebb9?q=80&w=200'">
                </div>
            </div>

            <div>
                <h4 style="color: var(--zakat-gold); font-weight: 700; text-transform: uppercase;">Zakat & Sadaqah</h4>
                <h1 style="font-size: 2.5rem; font-weight: 800; color: #333; line-height: 1.2; margin-bottom: 20px;">Purify Your Wealth.<br>Empower the Poor.</h1>
                
                <div style="color: #555; line-height: 1.7; margin-bottom: 25px;">
                    <p style="margin-bottom: 10px;">Zakat is more than charity; it is a divine duty that restores social justice and dignity to those in need.</p>
                </div>

                <div class="info-box">
                    <strong><i class="fas fa-calculator"></i> Calculation Note:</strong> 
                    Zakat al-Mal is 2.5% of your total qualifying wealth held for a lunar year. Use the "Other Amount" button to enter your exact calculated Zakat.
                </div>

                <div class="donation-widget">
                    <div class="input-group">
                        <label class="input-label">Select Category:</label>
                        <select id="p-type" class="custom-select" onchange="checkCategory(this)">
                            <option value="Zakat al-Mal">Zakat al-Mal (Wealth)</option>
                            <option value="Zakat al-Fitr">Zakat al-Fitr (£5 / person)</option>
                            <option value="Sadaqah">Sadaqah (General Charity)</option>
                            <option value="Fidya">Fidya (Missed Fasting)</option>
                            <option value="Kaffarah">Kaffarah</option>
                        </select>
                    </div>

                    <div class="input-group">
                        <label class="input-label">Select Amount:</label>
                        <div class="amount-grid">
                            <div class="amt-btn" onclick="selectAmount(50, this)">£50</div>
                            <div class="amt-btn" onclick="selectAmount(100, this)">£100</div>
                            <div class="amt-btn" onclick="selectAmount(250, this)">£250</div>
                            <div class="amt-btn" onclick="selectAmount(500, this)">£500</div>
                            <div class="amt-btn" onclick="selectAmount(1000, this)">£1000</div>
                            <div class="amt-btn selected" onclick="showCustomInput(this)">Other</div>
                        </div>
                        <input type="number" id="custom-amt" class="custom-input" placeholder="Enter amount (e.g., 245.50)" style="display: block;">
                    </div>

                    <button class="btn btn-gold" onclick="addZakatToCart()">
                        <i class="fas fa-hand-holding-heart" style="margin-right: 8px;"></i> Pay Zakat / Sadaqah
                    </button>
                    
                    <p style="text-align: center; font-size: 0.8rem; color: #666; margin-top: 15px;">
                        <i class="fas fa-shield-alt" style="color: var(--zakat-gold);"></i> 100% Donation Policy Applied
                    </p>
                </div>
            </div>
        </div>
    </section>

    <section class="section" style="background: white;">
        <div class="container text-center">
            <h2 class="section-title">Where Your Zakat Goes</h2>
            <div class="grid-3">
                <div style="padding: 20px;">
                    <i class="fas fa-bread-slice" style="font-size: 3rem; color: var(--zakat-gold); margin-bottom: 15px;"></i>
                    <h3>Food Security</h3>
                    <p>Providing essential food packs to families facing starvation.</p>
                </div>
                <div style="padding: 20px;">
                    <i class="fas fa-first-aid" style="font-size: 3rem; color: var(--zakat-gold); margin-bottom: 15px;"></i>
                    <h3>Emergency Aid</h3>
                    <p>Immediate relief for victims of war, floods, and earthquakes.</p>
                </div>
                <div style="padding: 20px;">
                    <i class="fas fa-coins" style="font-size: 3rem; color: var(--zakat-gold); margin-bottom: 15px;"></i>
                    <h3>Economic Empowerment</h3>
                    <p>Small business grants to help families become self-sufficient.</p>
                </div>
            </div>
        </div>
    </section>

    <?php include ("footer.php") ?>

    <div id="cart-overlay" class="cart-overlay">
        <div class="cart-box">
            <div class="cart-header">
                <h3>Donation Cart</h3>
                <i class="fas fa-times" onclick="toggleCart()" style="cursor: pointer; font-size: 1.5rem; color: #999;"></i>
            </div>
            <div id="success-banner" class="success-banner">Added to Basket!</div>
            <div id="cart-items"></div>
            <div class="cart-total">
                <span>Total</span>
                <span id="cart-total-display">£0.00</span>
            </div>
            <button class="btn btn-blue" style="border-radius: 50px; margin-bottom: 10px; width:100%;" onclick="goToCheckout()">Proceed to Checkout</button>
            <button class="btn btn-outline" style="width: 100%; border-radius: 50px;" onclick="toggleCart()">Continue Browsing</button>
        </div>
    </div>

    <script>
        // --- DATA & STATE ---
        let cart = <?php echo json_encode($_SESSION['cart']); ?>;
        if (!Array.isArray(cart)) cart = [];

        // For Zakat, we default to "Other" (0) so user types exact amount
        let selectedAmount = 0; 
        const symbol = '£';
        
        // --- SLIDER LOGIC ---
        const images = [
            "img/zakat1.jpg",
            "img/zakat2.jpg",
            "img/zakat3.jpg"
        ];
        let currentSlide = 0;

        function setSlide(index, thumb) {
            currentSlide = index;
            const mainImg = document.getElementById('mainImage');
            mainImg.src = images[currentSlide];
            
            // Fallbacks
            mainImg.onerror = function() {
                if(index === 0) this.src='https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?q=80&w=800';
                if(index === 1) this.src='https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=800';
                if(index === 2) this.src='https://images.unsplash.com/photo-1518458028785-8fbcd101ebb9?q=80&w=800';
            };

            document.querySelectorAll('.thumb').forEach(t => t.classList.remove('active'));
            if(thumb) thumb.classList.add('active');
            else document.querySelectorAll('.thumb')[index].classList.add('active');
        }

        function moveSlide(dir) {
            currentSlide = (currentSlide + dir + images.length) % images.length;
            setSlide(currentSlide, null);
        }

        // --- DONATION LOGIC ---
        function selectAmount(amt, btn) {
            selectedAmount = amt;
            document.getElementById('custom-amt').style.display = 'none';
            document.querySelectorAll('.amt-btn').forEach(b => b.classList.remove('selected'));
            btn.classList.add('selected');
        }

        function showCustomInput(btn) {
            document.getElementById('custom-amt').style.display = 'block';
            document.querySelectorAll('.amt-btn').forEach(b => b.classList.remove('selected'));
            btn.classList.add('selected');
            selectedAmount = 0; 
        }

        // Auto-adjust buttons if Zakat al-Fitr is selected
        function checkCategory(select) {
            if(select.value === 'Zakat al-Fitr') {
                // Highlight a small amount or suggest £5
                // We could reset, but let's just leave the user choice open
            }
        }

        function addZakatToCart() {
            const cause = document.getElementById('p-type').value;
            // Zakat is usually One-Off, but let's assume they might want Monthly Sadaqah
            const freq = "One-Off"; // Simplified for Zakat
            
            let amt = selectedAmount;
            if(amt === 0) {
                const customVal = document.getElementById('custom-amt').value;
                amt = parseFloat(customVal);
                if(!amt || amt <= 0) return alert("Please enter a valid amount");
            }

            addToCart(cause, freq, amt);
        }

        // --- CART LOGIC ---
        function addToCart(cause, freq, amt) {
            cart.push({cause, freq, amt});
            document.getElementById('success-banner').style.display = 'block';
            renderCart();
            document.getElementById('cart-overlay').classList.add('active');
        }

        function toggleCart() {
            document.getElementById('cart-overlay').classList.toggle('active');
            if (!document.getElementById('cart-overlay').classList.contains('active')) {
                setTimeout(() => { document.getElementById('success-banner').style.display = 'none'; }, 200);
            }
        }

        function renderCart() {
            const container = document.getElementById('cart-items');
            const totalDisplay = document.getElementById('cart-total-display');
            container.innerHTML = '';
            let total = 0;

            if (cart.length === 0) {
                container.innerHTML = '<p style="text-align: center; color: #999; padding: 20px;">Cart is empty.</p>';
            } else {
                cart.forEach((item, index) => {
                    total += parseFloat(item.amt);
                    container.innerHTML += `
                        <div class="cart-item">
                            <div>
                                <div style="font-weight: bold; color: #333;">${item.cause}</div>
                                <div style="font-size: 0.8rem; color: #777;">${item.freq}</div>
                            </div>
                            <div style="text-align: right;">
                                <div style="color: var(--zakat-gold); font-weight: bold;">${symbol}${item.amt.toFixed(2)}</div>
                                <div onclick="removeItem(${index})" style="font-size: 0.8rem; color: red; cursor: pointer; margin-top: 5px;">remove</div>
                            </div>
                        </div>
                    `;
                });
            }
            totalDisplay.innerText = symbol + total.toFixed(2);
        }

        function removeItem(index) {
            cart.splice(index, 1);
            renderCart();
        }

        function goToCheckout() {
            if (cart.length === 0) return alert("Your cart is empty.");
            
            const form = document.createElement('form');
            form.method = 'POST';
            form.action = 'checkout.php';

            const input = document.createElement('input');
            input.type = 'hidden';
            input.name = 'cart_data';
            input.value = JSON.stringify(cart);
            form.appendChild(input);
            
            const inputCur = document.createElement('input');
            inputCur.type = 'hidden';
            inputCur.name = 'currency_symbol';
            inputCur.value = symbol;
            form.appendChild(inputCur);

            document.body.appendChild(form);
            form.submit();
        }
    </script>
</body>
</html>
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`