[ka2] fix connecteur groupe_theoret: réécriture pour la refonte du site (GoDaddy Website Builder → GoDaddy Airo, ~2026-09-09) — le widget « menu » n'existe plus. Le sync de 15:40 a rapporté found=0 ok=1 (médiane 23, retraits suspendus) : reproduit en live, l'URL accentuée /appartements-%C3%A0-louer redirige 301 vers /appartements-a-louer et la nouvelle page (React Router, 88 Ko) ne contient plus aucun marqueur data-aid MENU_SECTION_*. Le nouveau site embarque TOUT le catalogue dans le payload d'hydratation window.__staticRouterHydrationData (données créées le 2026-09-01, unités ajoutées encore aujourd'hui) : 40 immeubles avec adresse + ville + code postal + slug /proprietes/<slug> + services + photos (/airo-assets/images/<slotKey>, vérifiées 200 image/jpeg) + contact, et par unité DISPONIBLE un id stable, le type, le loyer et la date de dispo ISO. Nouveau fetch() : une seule requête (plus de pages immeuble ni de cache détail), extraction du littéral JS par regex tolérante aux guillemets échappés puis double json.loads, external_id=u<id> (clé BD du site), RuntimeError si le payload est absent ou sans immeuble (une page saine embarque toujours les ~40 immeubles même à 0 dispo — même pattern que c3r/brio). Gain net vs l'ancien site : photos 25/25 (avant 0 %), inclusions 25/25, contact 24/25, code postal systématique. Testé : run.py sync groupe_theoret → found=25 ok (médiane 23, added=25 — nouveaux ids, les 23 anciennes annonces seront dépubliées par les retraits), fixtures ré-enregistrées (record → 1 requête, 25 annonces ; pytest 2 passed), pm2 restart lou-ka-sync, site :8095 → 200. sources.json : listing_url → /appartements-a-louer.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 changed files +364 −8,785
modified
data/sources.json
+1 −1
@@ -1477,7 +1477,7 @@ | ||
| 1477 | 1477 | "id": "groupe_theoret", |
| 1478 | 1478 | "name": "Groupe Théorêt (Gestion Immobilière)", |
| 1479 | 1479 | "url": "https://locationappartement.ca", |
| 1480 | − "listing_url": "https://locationappartement.ca/appartements-%C3%A0-louer", | |
| 1480 | + "listing_url": "https://locationappartement.ca/appartements-a-louer", | |
| 1481 | 1481 | "sectors": "Shawinigan, Grand-Mère, Terrebonne, Charlemagne, Laval, Montréal, Sainte-Thérèse", |
| 1482 | 1482 | "connector": "groupe_theoret", |
| 1483 | 1483 | "status": "actif", |
modified
louka/connectors/groupe_theoret.py
+91 −159
@@ -2,30 +2,31 @@ | ||
| 2 | 2 | # Lou-Ka — Agrégateur de logements à louer (province de Québec) |
| 3 | 3 | # Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
| 4 | 4 | # connectors/groupe_theoret.py : connecteur Groupe Théorêt (locationappartement.ca) |
| 5 | −# GoDaddy Website Builder. La page « Appartements à louer » expose un widget | |
| 6 | −# « menu » : une section par immeuble (adresse + ville) et un item par unité | |
| 7 | −# (type, prix/mois, disponibilité) ; le lien « Plus d'informations » porte un | |
| 8 | −# UUID stable (data-section-jump) qui sert d'external_id. Les pages immeuble | |
| 9 | −# (cache BD) ajoutent l'adresse complète AVEC code postal (géocodage), le | |
| 10 | −# contact du concierge et les services inclus. LIMITES DE LA SOURCE : le | |
| 11 | −# site GoDaddy ne publie AUCUNE photo des immeubles (le compte wsimg ne | |
| 12 | −# contient que logo.png et frontpage.png) ni description par logement — | |
| 13 | −# annonces sans image/description longue, c'est le maximum disponible. | |
| 5 | +# Refonte du site vers GoDaddy Airo (React Router, lancée ~2026-09-09) : | |
| 6 | +# l'ancien widget « menu » du Website Builder (data-aid MENU_SECTION_*) | |
| 7 | +# n'existe plus et l'URL accentuée /appartements-%C3%A0-louer redirige 301 | |
| 8 | +# vers /appartements-a-louer. La nouvelle page embarque TOUT le catalogue | |
| 9 | +# dans le payload d'hydratation `window.__staticRouterHydrationData` | |
| 10 | +# (JSON.parse("…")) : loaderData -> properties[] avec, par immeuble, | |
| 11 | +# adresse + ville + code postal + slug (/proprietes/<slug>), services | |
| 12 | +# (inclusions), photos (/airo-assets/images/<slotKey>) et contact du | |
| 13 | +# concierge ; et par unité DISPONIBLE : id stable (clé BD du site), type | |
| 14 | +# (« 3 1/2 (rénové) »), loyer mensuel et date de disponibilité ISO. | |
| 15 | +# Une seule requête suffit — plus de pages immeuble ni de cache détail. | |
| 16 | +# Contrairement à l'ancien site, celui-ci publie des photos par immeuble. | |
| 14 | 17 | # ----------------------------------------------------------------------------- |
| 15 | 18 | from __future__ import annotations |
| 16 | 19 | |
| 17 | −import hashlib | |
| 20 | +import json | |
| 18 | 21 | import re |
| 19 | 22 | |
| 20 | −from bs4 import BeautifulSoup | |
| 21 | − | |
| 22 | −from ..schema import Listing, normalize_unit_type, parse_price, strip_accents | |
| 23 | +from ..schema import Listing, normalize_unit_type, strip_accents | |
| 23 | 24 | from .base import BaseConnector |
| 24 | 25 | |
| 25 | 26 | BASE = "https://locationappartement.ca" |
| 26 | −LIST_URL = f"{BASE}/appartements-%C3%A0-louer" | |
| 27 | +LIST_URL = f"{BASE}/appartements-a-louer" | |
| 27 | 28 | |
| 28 | −# villes réelles du parc (les titres varient en casse : STE-THÉRÈSE, MONTREAL…) | |
| 29 | +# villes réelles du parc (normalisation des variantes : Ste-Thérèse…) | |
| 29 | 30 | _CITY_MAP = { |
| 30 | 31 | "montreal": "Montréal", |
| 31 | 32 | "laval": "Laval", |
@@ -37,6 +38,10 @@ _CITY_MAP = { | ||
| 37 | 38 | "grand-mere": "Shawinigan", # secteur fusionné de Shawinigan |
| 38 | 39 | } |
| 39 | 40 | |
| 41 | +_HYDRATION_RE = re.compile( | |
| 42 | + r'window\.__staticRouterHydrationData\s*=\s*' | |
| 43 | + r'JSON\.parse\("((?:[^"\\]|\\.)*)"\)') | |
| 44 | + | |
| 40 | 45 | |
| 41 | 46 | def _city_from(raw: str) -> str: |
| 42 | 47 | key = strip_accents(raw.strip().lower()) |
@@ -46,155 +51,82 @@ def _city_from(raw: str) -> str: | ||
| 46 | 51 | class GroupeTheoretConnector(BaseConnector): |
| 47 | 52 | source_id = "groupe_theoret" |
| 48 | 53 | request_delay = 0.8 |
| 49 | − max_pages = 1 # tout le parc annoncé tient sur la page « menu » | |
| 50 | − max_details = 20 # garde-fou pages immeuble (vraies requêtes) | |
| 54 | + use_detail_cache = False # tout est dans la page liste depuis la refonte | |
| 51 | 55 | |
| 52 | 56 | def fetch(self) -> list[Listing]: |
| 53 | 57 | html = self.get(LIST_URL).text |
| 54 | − soup = BeautifulSoup(html, "html.parser") | |
| 58 | + props = self._hydration_properties(html) | |
| 59 | + if not props: | |
| 60 | + # la page saine embarque toujours les ~40 immeubles du parc | |
| 61 | + # (même quand 0 unité est disponible) — payload absent ou vide | |
| 62 | + # = structure changée : échec franc plutôt qu'un faux « 0 ok » | |
| 63 | + raise RuntimeError( | |
| 64 | + "groupe_theoret : payload __staticRouterHydrationData absent " | |
| 65 | + f"ou sans immeuble sur {LIST_URL} — structure changée ?") | |
| 55 | 66 | |
| 56 | 67 | listings: list[Listing] = [] |
| 57 | − buildings: dict[str, list[Listing]] = {} # slug page immeuble -> annonces | |
| 58 | − for n in range(0, 60): | |
| 59 | − title_el = soup.select_one(f'[data-aid="MENU_SECTION_TITLE_{n}"]') | |
| 60 | − cont = soup.select_one(f'[data-aid="MENU_ITEM_CONTAINER_{n}"]') | |
| 61 | − if not (title_el and cont): | |
| 62 | − break | |
| 63 | − # « 5080 Pie-IX, Montréal » -> adresse + ville réelle | |
| 64 | − sec_title = title_el.get_text(" ", strip=True) | |
| 65 | − parts = [p.strip() for p in sec_title.split(",")] | |
| 66 | − address = parts[0] | |
| 67 | − city = _city_from(parts[-1]) if len(parts) > 1 else "" | |
| 68 | − occ: dict[str, int] = {} # occurrence par type dans l'immeuble | |
| 69 | − for m in range(0, 40): | |
| 70 | − lst = self._parse_item(soup, n, m, sec_title, address, city, occ) | |
| 71 | − if lst is None: | |
| 72 | − break | |
| 73 | − listings.append(lst) | |
| 74 | − slug = lst.url.replace(BASE, "").split("#")[0].strip("/") | |
| 75 | − # certains liens « Plus d'informations » pointent vers le | |
| 76 | − # mauvais immeuble : on ne rattache la page immeuble que si | |
| 77 | − # son slug correspond à l'adresse de la section, et on replie | |
| 78 | − # l'URL de l'annonce sur la page liste en cas de lien erroné | |
| 79 | − if slug and self._slug_matches(slug, address): | |
| 80 | − buildings.setdefault(slug, []).append(lst) | |
| 81 | − elif slug: | |
| 82 | − lst.url = LIST_URL | |
| 83 | − | |
| 84 | − # pages immeuble (cache BD, 1 requête par immeuble) : adresse complète | |
| 85 | − # + « Services disponibles » (inclusions) partagés par leurs unités | |
| 86 | − self._fetched = 0 | |
| 87 | − for slug, group in buildings.items(): | |
| 88 | − # clé versionnée « v2 » : force une revisite unique des pages | |
| 89 | − # immeuble mises en cache avant l'ajout adresse+contact | |
| 90 | − key = hashlib.sha1("|".join( | |
| 91 | − ["v2"] + [f"{l.title}|{l.price_label}|{l.availability}" | |
| 92 | − for l in group]) | |
| 93 | − .encode("utf-8")).hexdigest() | |
| 94 | − try: | |
| 95 | − payload = self.detail(f"bldg:{slug}", key, | |
| 96 | − lambda s=slug: self._fetch_building(s)) | |
| 97 | − except Exception: | |
| 98 | − continue | |
| 99 | − for l in group: | |
| 100 | − if payload.get("amenities"): | |
| 101 | − l.amenities = payload["amenities"] | |
| 102 | − # adresse complète avec code postal -> géocodage plus fiable | |
| 103 | − if payload.get("address"): | |
| 104 | − l.address = payload["address"] | |
| 105 | − if payload.get("contact"): | |
| 106 | − l.details = dict(l.details, | |
| 107 | − contact=dict(payload["contact"])) | |
| 68 | + for p in props: | |
| 69 | + address = (p.get("address") or p.get("name") or "").strip() | |
| 70 | + city = _city_from(p.get("city") or "") | |
| 71 | + postal = (p.get("postalCode") or "").strip() | |
| 72 | + slug = (p.get("slug") or "").strip() | |
| 73 | + url = f"{BASE}/proprietes/{slug}" if slug else LIST_URL | |
| 74 | + images = [ | |
| 75 | + f"{BASE}/airo-assets/images/{ph['slotKey']}" | |
| 76 | + for ph in sorted(p.get("photos") or [], | |
| 77 | + key=lambda x: x.get("sortOrder") or 0) | |
| 78 | + if ph.get("slotKey")] | |
| 79 | + amenities: list[str] = [] | |
| 80 | + for s in p.get("services") or []: | |
| 81 | + name = (s.get("name") or "").strip() | |
| 82 | + if not name: | |
| 83 | + continue | |
| 84 | + if s.get("included"): | |
| 85 | + amenities.append(f"{name} (Inclus)") | |
| 86 | + elif s.get("detail"): | |
| 87 | + amenities.append(f"{name} ({str(s['detail']).strip()})") | |
| 88 | + details: dict = {} | |
| 89 | + c = p.get("contact") or {} | |
| 90 | + if c.get("contactName"): | |
| 91 | + contact = {"name": str(c["contactName"]).strip()} | |
| 92 | + for k_src, k_dst in (("phone", "phone"), ("mobile", "mobile")): | |
| 93 | + if c.get(k_src): | |
| 94 | + contact[k_dst] = str(c[k_src]).strip() | |
| 95 | + details["contact"] = contact | |
| 96 | + | |
| 97 | + for u in p.get("units") or []: | |
| 98 | + size = (u.get("size") or "").strip() | |
| 99 | + try: | |
| 100 | + price = float(u["monthlyRent"]) | |
| 101 | + except (KeyError, TypeError, ValueError): | |
| 102 | + price = None | |
| 103 | + avail = str(u.get("availabilityDate") or "")[:10] | |
| 104 | + listings.append(Listing( | |
| 105 | + source=self.source_id, | |
| 106 | + external_id=f"u{u['id']}", | |
| 107 | + url=url, | |
| 108 | + title=f"{size} au {address}, {city}".strip(", "), | |
| 109 | + address=f"{address}, {postal}" if postal else address, | |
| 110 | + city=city, | |
| 111 | + unit_type=normalize_unit_type(size), | |
| 112 | + price=price, | |
| 113 | + availability=avail, | |
| 114 | + amenities=list(amenities), | |
| 115 | + details=dict(details), | |
| 116 | + images=list(images), | |
| 117 | + )) | |
| 108 | 118 | return listings |
| 109 | 119 | |
| 110 | 120 | @staticmethod |
| 111 | − def _slug_matches(slug: str, address: str) -> bool: | |
| 112 | − """Le slug de page immeuble correspond-il à l'adresse de la section ? | |
| 113 | − (garde-fou contre les liens « Plus d'informations » erronés du site)""" | |
| 114 | − slug_k = strip_accents(slug.lower()) | |
| 115 | − tokens = [t for t in re.split(r"[^a-z0-9]+", | |
| 116 | − strip_accents(address.lower())) if len(t) > 2] | |
| 117 | − return any(t in slug_k for t in tokens) | |
| 118 | − | |
| 119 | − # -- item du widget « menu » GoDaddy ------------------------------------------ | |
| 120 | − def _parse_item(self, soup, n: int, m: int, sec_title: str, | |
| 121 | − address: str, city: str, occ: dict) -> Listing | None: | |
| 122 | − title_el = soup.select_one(f'[data-aid="MENU_SECTION{n}_ITEM{m}_TITLE"]') | |
| 123 | − if not title_el: | |
| 124 | − return None | |
| 125 | − unit_title = title_el.get_text(" ", strip=True) # « 3 1/2 » | |
| 126 | − price_el = soup.select_one(f'[data-aid="MENU_SECTION{n}_ITEM{m}_PRICE"]') | |
| 127 | − desc_el = soup.select_one(f'[data-aid="MENU_SECTION{n}_ITEM{m}_DESC"]') | |
| 128 | − price_label = price_el.get_text(" ", strip=True) if price_el else "" | |
| 129 | − | |
| 130 | − availability, url = "", LIST_URL | |
| 131 | − if desc_el: | |
| 132 | − link = desc_el.select_one("a[href]") | |
| 133 | − if link: | |
| 134 | − url = link["href"] | |
| 135 | − if url.startswith("/"): | |
| 136 | − url = BASE + url | |
| 137 | − txt = desc_el.get_text(" ", strip=True) | |
| 138 | − txt = re.sub(r"Plus d'informations\s*$", "", txt).strip() | |
| 139 | − availability = re.sub(r"^Disponibilit[ée]\s*:\s*", "", txt).strip() | |
| 140 | − | |
| 141 | − # external_id : empreinte immeuble + type + rang parmi les unités de | |
| 142 | − # même type de l'immeuble (les ancres UUID du builder sont dupliquées | |
| 143 | − # entre items — inutilisables comme identifiant) | |
| 144 | − k = occ.get(unit_title, 0) | |
| 145 | − occ[unit_title] = k + 1 | |
| 146 | − ext_id = hashlib.sha1( | |
| 147 | − f"{sec_title}|{unit_title}|{k}".encode("utf-8")).hexdigest()[:16] | |
| 148 | − | |
| 149 | − return Listing( | |
| 150 | − source=self.source_id, | |
| 151 | − external_id=ext_id, | |
| 152 | − url=url, | |
| 153 | − title=f"{unit_title} au {address}, {city}".strip(", "), | |
| 154 | − address=address, | |
| 155 | − city=city, | |
| 156 | − unit_type=normalize_unit_type(unit_title), | |
| 157 | − price=parse_price(price_label), | |
| 158 | − price_label=price_label, | |
| 159 | − availability=availability, | |
| 160 | − ) | |
| 161 | − | |
| 162 | − # -- page immeuble -------------------------------------------------------------- | |
| 163 | − def _fetch_building(self, slug: str) -> dict: | |
| 164 | − """Adresse complète (avec code postal), contact et « Services | |
| 165 | − disponibles » (Eau chaude (Inclus)…) de la page immeuble.""" | |
| 166 | − if self._fetched >= self.max_details: | |
| 167 | − raise RuntimeError("budget de pages immeuble atteint") | |
| 168 | − self._fetched += 1 | |
| 169 | − html = self.get(f"{BASE}/{slug}").text | |
| 170 | − soup = BeautifulSoup(html, "html.parser") | |
| 171 | − out: dict = {} | |
| 172 | − lines = (soup.body.get_text("\n", strip=True) if soup.body else "").split("\n") | |
| 173 | − | |
| 174 | − # adresse civique complète : 1re ligne « 100-110 Place Brosseau, | |
| 175 | − # Ste-Thérèse, Québec, J7E 4V3 » (code postal présent) | |
| 176 | − for line in lines[:120]: | |
| 177 | − if re.match(r"^\d", line) and "," in line \ | |
| 178 | − and re.search(r"[A-Z]\d[A-Z]\s?\d[A-Z]\d", line): | |
| 179 | − out["address"] = re.sub(r",?\s*Canada\s*$", "", line).strip() | |
| 180 | − break | |
| 181 | − | |
| 182 | − # contact du responsable : « Lise Duhamel / Téléphone: / 514-… » | |
| 183 | − m = re.search(r"\n([A-ZÉÈÀ][\w'’\- ]{2,40})\nT[ée]l[ée]phone:\n" | |
| 184 | − r"([\d\-\(\) \.]{7,20})", "\n".join(lines)) | |
| 185 | − if m: | |
| 186 | − out["contact"] = {"name": m.group(1).strip(), | |
| 187 | − "phone": m.group(2).strip()} | |
| 188 | − | |
| 189 | − try: | |
| 190 | − i = lines.index("Services disponibles") | |
| 191 | − except ValueError: | |
| 192 | − return out | |
| 193 | − amen: list[str] = [] | |
| 194 | − for line in lines[i + 1:i + 15]: | |
| 195 | − if re.search(r"Canada|T[ée]l[ée]phone|Bureau|Cellulaire|^Vos\b", line): | |
| 196 | − break | |
| 197 | − if line and line not in amen: | |
| 198 | − amen.append(line) | |
| 199 | − out["amenities"] = amen[:12] | |
| 200 | − return out | |
| 121 | + def _hydration_properties(html: str) -> list[dict]: | |
| 122 | + """properties[] du payload d'hydratation React Router de la page.""" | |
| 123 | + m = _HYDRATION_RE.search(html) | |
| 124 | + if not m: | |
| 125 | + return [] | |
| 126 | + # littéral de chaîne JS (guillemets échappés) -> texte -> objet | |
| 127 | + data = json.loads(json.loads(f'"{m.group(1)}"')) | |
| 128 | + for value in (data.get("loaderData") or {}).values(): | |
| 129 | + if isinstance(value, dict) and isinstance( | |
| 130 | + value.get("properties"), list): | |
| 131 | + return value["properties"] | |
| 132 | + return [] | |
deleted
tests/fixtures/groupe_theoret/3075cc85b926b1b7d508.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1405 François Paquin</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1405-fran%C3%A7ois-paquin"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{font-size:32px}.x .c1-7f{color:rgb(96, 158, 0)}.x .c1-7k{border-color:rgb(218, 218, 218)}.x .c1-7l{flex-wrap:wrap}.x .c1-7m{margin-right:-12px}.x .c1-7n{margin-bottom:-24px}.x .c1-7o{margin-left:-12px}.x .c1-7p{padding-right:12px}.x .c1-7q{padding-left:12px}.x .c1-7u{margin-bottom:24px}.x .c1-7x{line-height:1.25}.x .c1-7y{-moz-column-gap:40px}.x .c1-7z{-webkit-column-gap:40px}.x .c1-80{column-gap:40px}.x .c1-81{-webkit-column-break-inside:avoid}.x .c1-82{break-inside:avoid-column}.x .c1-83{display:table}.x .c1-87{line-height:1}.x .c1-8e{font-size:inherit !important}.x .c1-8f{line-height:inherit}.x .c1-8g{font-style:italic}.x .c1-8h{text-decoration:line-through}.x .c1-8i{text-decoration:underline}.x .c1-8j{margin-top:32px}.x .c1-8k{flex-basis:83.33333333333334%}.x .c1-8l{max-width:83.33333333333334%}.x .c1-8m{margin-left:8.333333333333332%}.x .c1-8n{color:rgb(82, 82, 82)}.x .c1-8o{font-size:12px}.x .c1-8t{min-height:300px}.x .c1-98 > p > ol{text-align:left}.x .c1-99 > p > ol{display:block}.x .c1-9a > p > ol{padding-left:1.3em}.x .c1-9b > p > ol{margin-left:16px}.x .c1-9c > p > ol{margin-right:16px}.x .c1-9d > p > ol{margin-top:auto}.x .c1-9e > p > ol{margin-bottom:auto}.x .c1-9f > p > ol{text-wrap:pretty}.x .c1-9g > p > ul{text-align:left}.x .c1-9h > p > ul{display:block}.x .c1-9i > p > ul{padding-left:1.3em}.x .c1-9j > p > ul{margin-left:16px}.x .c1-9k > p > ul{margin-right:16px}.x .c1-9l > p > ul{margin-top:auto}.x .c1-9m > p > ul{margin-bottom:auto}.x .c1-9n > p > ul{text-wrap:pretty}.x .c1-9o > ul{text-align:left}.x .c1-9p > ul{display:block}.x .c1-9q > ul{padding-left:1.3em}.x .c1-9r > ul{margin-left:16px}.x .c1-9s > ul{margin-right:16px}.x .c1-9t > ul{margin-top:auto}.x .c1-9u > ul{margin-bottom:auto}.x .c1-9v > ul{text-wrap:pretty}.x .c1-9w > ol{text-align:left}.x .c1-9x > ol{display:block}.x .c1-9y > ol{padding-left:1.3em}.x .c1-9z > ol{margin-left:16px}.x .c1-a0 > ol{margin-right:16px}.x .c1-a1 > ol{margin-top:auto}.x .c1-a2 > ol{margin-bottom:auto}.x .c1-a3 > ol{text-wrap:pretty}.x .c1-a4{white-space:pre-line}.x .c1-a6{border-style:none}.x .c1-a7{display:inline-flex}.x .c1-a8{padding-right:32px}.x .c1-a9{min-height:56px}.x .c1-aa{border-radius:4px}.x .c1-ab{color:rgb(0, 0, 0)}.x .c1-ac{background-color:rgb(102, 168, 0)}.x .c1-ad{text-shadow:none}.x .c1-ae:hover{background-color:rgb(121, 197, 0)}.x .c1-ag{height:inherit}.x .c1-ah{left:0px}.x .c1-ai{z-index:2}.x .c1-aj{transform:translate3d(-120%,0,0)}.x .c1-ak{opacity:0}.x .c1-al{transition:transform .8s ease, opacity .1s}.x .c1-am{align-items:flex-start}.x .c1-an{max-width:600px}.x .c1-ao{border-top-width:1px}.x .c1-ap{border-right-width:1px}.x .c1-aq{border-bottom-width:1px}.x .c1-ar{border-left-width:1px}.x .c1-as{padding-top:23px}.x .c1-at{padding-bottom:7px}.x .c1-au{color:rgb(71, 71, 71)}.x .c1-av::placeholder{color:inherit}.x .c1-aw:focus{outline:none}.x .c1-ax:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-ay:focus + label{font-size:12px}.x .c1-az:focus + label{top:8px}.x .c1-b0:focus + label{color:rgb(79, 130, 0)}.x .c1-b1:not([value=""]) + label{font-size:12px}.x .c1-b2:not([value=""]) + label{top:8px}.x .c1-b3:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-b4::-webkit-input-placeholder{color:inherit}.x .c1-b6{top:33%}.x .c1-b7{left:16px}.x .c1-b8{transition:all .15s ease}.x .c1-b9{resize:vertical}.x .c1-ba{color:rgb(89, 89, 89)}.x .c1-bb{width:fit-content}.x .c1-bc:hover{cursor:pointer}.x .c1-bf{min-height:inherit}.x .c1-bg > *{flex-grow:1}.x .c1-bh > *{min-height:inherit}.x .c1-bi{order:initial}.x .c1-bn{right:0px}.x .c1-bo{bottom:0px}.x .c1-bp{position:absolute !important}.x .c1-bq{transform:translate3d(0,0,0)}.x .c1-br{left:56px}.x .c1-bs{top:8px}.x .c1-bt{min-height:40px}.x .c1-bx{margin-left:-4px}.x .c1-by{width:18px}.x .c1-bz{height:18px}.x .c1-c0{top:50%}.x .c1-c1{right:auto}.x .c1-c2{line-height:0}.x .c1-c3{transform:translateY(-50%)}.x .c1-c4 > img{display:block}.x .c1-c5{margin-left:calc(18px + 8px)}.x .c1-c6{border-top-style:solid}.x .c1-c7{color:rgb(76, 125, 0)}.x .c1-c8{list-style-type:none}.x .c1-cc{padding-top:40px}.x .c1-cd{margin-bottom:4px}.x .c1-ce{z-index:10003}.x .c1-cf{background-color:rgba(0, 0, 0, 0.6)}.x .c1-cu{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-cv{max-height:90vh}.x .c1-cw{height:max-content}.x .c1-cx{border-radius:12px}.x .c1-cy{max-width:515px}.x .c1-de{z-index:1}.x .c1-df{padding-right:4px}.x .c1-dg{padding-left:4px}.x .c1-dh{border-radius:50%}.x .c1-di{height:22px}.x .c1-dj{width:22px}.x .c1-dk{align-self:center}.x .c1-dl{height:auto}.x .c1-dm > *:not(:last-child){margin-bottom:0px}.x .c1-dp > *:not(:last-child){margin-bottom:16px}.x .c1-dq{padding-top:32px}.x .c1-dr{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-b5{font-size:16px}}@media (max-width: 767px){.x .c1-bd{margin-top:24px}}@media (max-width: 767px){.x .c1-bj{order:-1}}@media (max-width: 767px){.x .c1-bu{font-size:12px}}@media (max-width: 767px){.x .c1-bv{left:8px}}@media (max-width: 767px){.x .c1-bw{max-width:90%}}@media (max-width: 767px){.x .c1-c9{flex-direction:column}}@media (max-width: 767px){.x .c1-ca{padding-top:4px}}@media (max-width: 767px){.x .c1-cb{padding-bottom:4px}}@media (max-width: 767px){.x .c1-cz{position:relative}}@media (max-width: 767px){.x .c1-d0{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-d1{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-d2{padding-bottom:16px}}@media (max-width: 767px){.x .c1-d3{max-height:90vh}}@media (max-width: 767px){.x .c1-d4{border-radius:12px}}@media (max-width: 767px){.x .c1-d5{margin-top:16px}}@media (max-width: 767px){.x .c1-d6{margin-right:16px}}@media (max-width: 767px){.x .c1-d7{margin-bottom:16px}}@media (max-width: 767px){.x .c1-d8{margin-left:16px}}@media (max-width: 767px){.x .c1-d9{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7g{font-size:38px}}@media (min-width: 768px){.x .c1-7r{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-7s{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-7t{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-7v{margin-bottom:0}}@media (min-width: 768px){.x .c1-7w{padding-bottom:0}}@media (min-width: 768px){.x .c1-84{flex-direction:row}}@media (min-width: 768px){.x .c1-85{min-width:0}}@media (min-width: 768px){.x .c1-86{max-width:65%}}@media (min-width: 768px){.x .c1-88{max-width:25%}}@media (min-width: 768px){.x .c1-89{text-align:right}}@media (min-width: 768px){.x .c1-8a{margin-right:0}}@media (min-width: 768px){.x .c1-8b{margin-left:0}}@media (min-width: 768px){.x .c1-8c{flex-basis:75%}}@media (min-width: 768px){.x .c1-8d{max-width:75%}}@media (min-width: 768px){.x .c1-8p{font-size:12px}}@media (min-width: 768px){.x .c1-af{width:auto}}@media (min-width: 768px){.x .c1-be{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bk{order:-1}}@media (min-width: 768px){.x .c1-cg{position:absolute}}@media (min-width: 768px){.x .c1-ch{transform:none}}@media (min-width: 768px){.x .c1-ci{max-width:600px}}@media (min-width: 768px){.x .c1-cj{margin-top:24px}}@media (min-width: 768px){.x .c1-ck{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cl{margin-left:auto}}@media (min-width: 768px){.x .c1-cm{margin-right:auto}}@media (min-width: 768px){.x .c1-cn{display:flex}}@media (min-width: 768px){.x .c1-co{align-items:center}}@media (min-width: 768px){.x .c1-cp{pointer-events:none}}@media (min-width: 768px){.x .c1-cq{justify-content:center}}@media (min-width: 768px){.x .c1-cr:before{display:block}}@media (min-width: 768px){.x .c1-cs:before{height:90vh}}@media (min-width: 768px){.x .c1-ct:before{content:""}}@media (min-width: 768px){.x .c1-da{pointer-events:auto}}@media (min-width: 768px){.x .c1-db{border-radius:12px}}@media (min-width: 768px){.x .c1-dc{max-width:515px}}@media (min-width: 768px){.x .c1-dn{padding-left:0px}}@media (min-width: 768px){.x .c1-do{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7h{font-size:38px}}@media (min-width: 1024px){.x .c1-8q{font-size:12px}}@media (min-width: 1024px){.x .c1-8u{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-8v{flex-direction:row}}@media (min-width: 1024px){.x .c1-8w{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-8x{min-height:0px}}@media (min-width: 1024px){.x .c1-8y:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-8z:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-90:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-91{flex-basis:50%}}@media (min-width: 1024px){.x .c1-92{max-width:50%}}@media (min-width: 1024px){.x .c1-93{justify-content:center}}@media (min-width: 1024px){.x .c1-94 > *{max-width:70%}}@media (min-width: 1024px){.x .c1-95{margin-top:0}}@media (min-width: 1024px){.x .c1-96{margin-right:auto}}@media (min-width: 1024px){.x .c1-97{margin-bottom:0}}@media (min-width: 1024px){.x .c1-a5{position:static}}@media (min-width: 1024px){.x .c1-bl > *{max-width:100%}}@media (min-width: 1024px){.x .c1-bm > *{width:100%}}@media (min-width: 1024px){.x .c1-dd{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7i{font-size:44px}}@media (min-width: 1280px){.x .c1-8r{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-7j{font-size:48px}}@media (min-width: 1536px){.x .c1-8s{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-184263" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-184264" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-184265"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.184268.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-184264" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.184269.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-184264184267-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-184270" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184272.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184273.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="184274" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.184275.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184276.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184277.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184278.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184279.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184280.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184281.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184282.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184283.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184284.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184285.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184286.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184287.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184288.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184289.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184290.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184291.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184292.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184293.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184294.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184295.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184296.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184297.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.184298.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184299.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184300.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184301.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184302.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184303.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184304.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184305.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184306.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184307.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184308.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184309.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184270-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184310.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184311.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184312.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184313.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184314.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="184315" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.184316.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-184271" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-184271" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184317.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-184271" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184318.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-184271" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184319.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-184271" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184320.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-184271" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184321.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-184271" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184322.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-184271" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184323.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-184271" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184324.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-184271" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184325.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-184271" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184326.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-184271" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184327.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-184271" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184328.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-184271" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184329.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-184271" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184330.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-184271" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184331.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-184271" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184332.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-184271" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184333.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-184271" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184334.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-184271" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184335.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-184271" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184336.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-184271" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184337.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-184271" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184338.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-184271" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184339.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-184271" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184340.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-184271" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184341.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-184271" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.184342.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-184271" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184343.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-184271" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184344.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-184271" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184345.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-184271" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184346.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-184271" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184347.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-184271" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184348.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-184271" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184349.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-184271" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184350.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-184271" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184351.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-184271" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184352.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-184271" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184353.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-184271" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184354.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-184271" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184355.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-184271" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184356.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-184271" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184357.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-184271" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184358.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.184359.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-184264" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="184360" aria-expanded="false" toggleId="n-184264-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.184361.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.184362.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-184264-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-184264-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-184264-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-184264-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184363.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184364.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="184365" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.184366.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184367.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184368.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184369.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184370.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184371.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184372.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184373.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184374.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184375.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184376.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184377.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184378.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184379.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184380.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184381.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184382.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184383.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184384.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184385.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184386.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184387.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184388.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.184389.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184390.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184391.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184392.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184393.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184394.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184395.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184396.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184397.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184398.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184399.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184400.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184401.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184402.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184403.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184404.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184405.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="af85a1e7-267d-427a-aa91-4021a4a2fb46" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="af85a1e7-267d-427a-aa91-4021a4a2fb46" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1405 François Paquin, Terrebonne, Québec, J6W 3M7</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none;touch-action:auto"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li></ul></div></div></div></div></div></div></div></section> </div></div></div><div id="1ffa8a8b-0c30-4bbd-8bfb-9114f42102ce" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="1ffa8a8b-0c30-4bbd-8bfb-9114f42102ce" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7e c1-7f c1-2z c1-7g c1-72 c1-73 c1-7h c1-7i c1-7j"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-7k c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-7r c1-7s c1-7t c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_1405FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1405 FRANÇOIS PAQUIN</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-8c c1-8d c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span> Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-8j c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-8k c1-8l c1-8m c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-8n c1-8o c1-2z c1-8p c1-8q c1-8r c1-8s">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="4d94645e-d2fd-444e-b05e-4bd3ddb4b1d4" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="4d94645e-d2fd-444e-b05e-4bd3ddb4b1d4" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-8t c1-68 c1-b c1-c c1-d c1-8u c1-8v c1-8w c1-8x c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container184406" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-8y c1-8z c1-90 c1-d c1-91 c1-92 c1-93 c1-94 c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-95 c1-96 c1-97 c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-98 c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-9h c1-9i c1-9j c1-9k c1-9l c1-9m c1-9n c1-9o c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8e c1-34 c1-4t c1-8f">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1405 Rue François-Paquin, Terrebonne, Quebec J6W 3M7, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-a4 c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">M Hicham Loutfy | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509646818" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184408.click,click">450-964-6818</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142070483" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184409.click,click">514-207-0483</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509649744" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184410.click,click">450-964-9744</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184411.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184412.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-a5 c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184413.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ag c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded184407" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-ah c1-60 c1-ai c1-h c1-i c1-aj c1-ak c1-al c1-4 c1-3 c1-u c1-3b c1-am c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-an c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-7u c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184414" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184414" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184415" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184415" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184416" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184416" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-b9 c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-b4 c1-b5 c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-ba c1-8o c1-2z c1-8p c1-8q c1-8r c1-8s">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8o c1-1p c1-1q c1-1r c1-8p c1-8q c1-8r c1-8s" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184417.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8o c1-1p c1-1q c1-1r c1-8p c1-8q c1-8r c1-8s" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184418.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-7l c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bb c1-8i c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-bc c1-bd c1-be c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184419.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bf c1-bg c1-bh c1-bi c1-b c1-c c1-8y c1-8z c1-90 c1-bj c1-bk c1-d c1-91 c1-92 c1-93 c1-bl c1-bm c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-ah c1-60 c1-bn c1-bo c1-bp c1-bq c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-br c1-bs c1-1n c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-bt c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-44 c1-ae c1-bu c1-bv c1-bw c1-af c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-bx c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-by c1-bz c1-4h c1-c0 c1-ah c1-c1 c1-c2 c1-c3 c1-c4 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-c5 c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-7k c1-ao c1-c6 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-8n c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8i c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8i c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-c8 c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-c9 c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184422.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184423.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184424.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184425.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184426.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184427.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-aq c1-7b c1-1y c1-7u c1-7d c1-p c1-q c1-cc c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cd c1-2u c1-b c1-8n c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-c7 c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.184428.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget184429" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-ah c1-bo c1-bn c1-1j c1-1k c1-1l c1-1m c1-ce c1-4k c1-cf c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-cr c1-cs c1-ct c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-d c1-cr c1-cs c1-ct c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-cu c1-1u c1-cv c1-cw c1-cx c1-cy c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-cz c1-19 c1-c9 c1-d0 c1-d1 c1-d2 c1-d3 c1-2i c1-d4 c1-d5 c1-d6 c1-d7 c1-d8 c1-d9 c1-10 c1-da c1-db c1-dc c1-10 c1-da c1-db c1-dc c1-d c1-dd c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-bn c1-de c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget184429-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-df c1-4r c1-dg c1-1i c1-dh c1-3 c1-di c1-dj c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dk c1-t c1-dl c1-1v c1-1t c1-4k c1-4 c1-dm c1-cx c1-b c1-c c1-dn c1-do c1-db c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-dp c1-dq c1-a8 c1-dr c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8e c1-34 c1-4t c1-8f">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.184430.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget184429-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/b2e889cbd26bc3c0/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/448bdfa4358a02d0/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/41f1165298d3e3b4f6d3.html
+0 −654
@@ -1,654 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>15 Yvon Plourde</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/15-yvon-plourde"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{margin-top:32px}.x .c1-91{flex-basis:83.33333333333334%}.x .c1-92{max-width:83.33333333333334%}.x .c1-93{margin-left:8.333333333333332%}.x .c1-94{color:rgb(82, 82, 82)}.x .c1-95{font-size:12px}.x .c1-9a{min-height:300px}.x .c1-9p > p > ol{text-align:left}.x .c1-9q > p > ol{display:block}.x .c1-9r > p > ol{padding-left:1.3em}.x .c1-9s > p > ol{margin-left:16px}.x .c1-9t > p > ol{margin-right:16px}.x .c1-9u > p > ol{margin-top:auto}.x .c1-9v > p > ol{margin-bottom:auto}.x .c1-9w > p > ol{text-wrap:pretty}.x .c1-9x > p > ul{text-align:left}.x .c1-9y > p > ul{display:block}.x .c1-9z > p > ul{padding-left:1.3em}.x .c1-a0 > p > ul{margin-left:16px}.x .c1-a1 > p > ul{margin-right:16px}.x .c1-a2 > p > ul{margin-top:auto}.x .c1-a3 > p > ul{margin-bottom:auto}.x .c1-a4 > p > ul{text-wrap:pretty}.x .c1-a5 > ul{text-align:left}.x .c1-a6 > ul{display:block}.x .c1-a7 > ul{padding-left:1.3em}.x .c1-a8 > ul{margin-left:16px}.x .c1-a9 > ul{margin-right:16px}.x .c1-aa > ul{margin-top:auto}.x .c1-ab > ul{margin-bottom:auto}.x .c1-ac > ul{text-wrap:pretty}.x .c1-ad > ol{text-align:left}.x .c1-ae > ol{display:block}.x .c1-af > ol{padding-left:1.3em}.x .c1-ag > ol{margin-left:16px}.x .c1-ah > ol{margin-right:16px}.x .c1-ai > ol{margin-top:auto}.x .c1-aj > ol{margin-bottom:auto}.x .c1-ak > ol{text-wrap:pretty}.x .c1-al{white-space:pre-line}.x .c1-an{border-style:none}.x .c1-ao{display:inline-flex}.x .c1-ap{padding-right:32px}.x .c1-aq{min-height:56px}.x .c1-ar{border-radius:4px}.x .c1-as{color:rgb(0, 0, 0)}.x .c1-at{background-color:rgb(102, 168, 0)}.x .c1-au{text-shadow:none}.x .c1-av:hover{background-color:rgb(121, 197, 0)}.x .c1-ax{height:inherit}.x .c1-ay{z-index:2}.x .c1-az{transform:translate3d(-120%,0,0)}.x .c1-b0{transition:transform .8s ease, opacity .1s}.x .c1-b1{align-items:flex-start}.x .c1-b2{max-width:600px}.x .c1-b3{border-top-width:1px}.x .c1-b4{border-right-width:1px}.x .c1-b5{border-bottom-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-96{font-size:12px}}@media (min-width: 768px){.x .c1-aw{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-97{font-size:12px}}@media (min-width: 1024px){.x .c1-9b{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9c{flex-direction:row}}@media (min-width: 1024px){.x .c1-9d{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9e{min-height:0px}}@media (min-width: 1024px){.x .c1-9f:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9g:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9h:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9i{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9j{max-width:50%}}@media (min-width: 1024px){.x .c1-9k{justify-content:center}}@media (min-width: 1024px){.x .c1-9l > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9m{margin-top:0}}@media (min-width: 1024px){.x .c1-9n{margin-right:auto}}@media (min-width: 1024px){.x .c1-9o{margin-bottom:0}}@media (min-width: 1024px){.x .c1-am{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-98{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-99{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-52980" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-52981" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-52982"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.52985.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-52981" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.52986.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-5298152984-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-52987" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52989.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52990.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="52991" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.52992.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52993.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52994.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52995.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.52996.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52997.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52998.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.52999.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53000.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53001.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53002.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53003.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53004.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53005.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53006.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53007.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53008.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53009.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53010.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53011.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53012.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53013.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53014.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53015.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53016.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53017.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53018.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53019.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53020.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53021.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53022.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53023.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53024.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53025.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53026.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-52987-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53027.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53028.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53029.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53030.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53031.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="53032" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.53033.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-52988" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-52988" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53034.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-52988" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53035.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-52988" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53036.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-52988" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53037.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-52988" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53038.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-52988" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53039.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-52988" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.53040.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-52988" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53041.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-52988" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53042.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-52988" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53043.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-52988" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53044.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-52988" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53045.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-52988" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53046.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-52988" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53047.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-52988" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53048.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-52988" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53049.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-52988" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53050.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-52988" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53051.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-52988" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53052.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-52988" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53053.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-52988" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53054.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-52988" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53055.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-52988" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53056.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-52988" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53057.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-52988" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53058.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-52988" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53059.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-52988" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53060.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-52988" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53061.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-52988" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53062.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-52988" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53063.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-52988" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53064.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-52988" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53065.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-52988" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53066.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-52988" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53067.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-52988" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53068.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-52988" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53069.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-52988" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53070.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-52988" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53071.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-52988" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53072.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-52988" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53073.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-52988" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53074.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-52988" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53075.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.53076.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-52981" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="53077" aria-expanded="false" toggleId="n-52981-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.53078.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.53079.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-52981-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-52981-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-52981-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-52981-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53080.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53081.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="53082" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.53083.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53084.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53085.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53086.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.53087.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53088.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53089.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53090.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53091.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53092.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53093.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53094.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53095.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53096.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53097.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53098.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53099.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53100.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53101.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53102.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53103.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53104.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53105.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53106.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53107.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53108.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53109.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53110.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53111.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53112.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53113.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53114.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53115.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53116.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53117.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53118.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53119.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53120.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53121.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53122.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="336451df-5c3f-4389-aa6b-f2128d9beb2b" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="336451df-5c3f-4389-aa6b-f2128d9beb2b" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">15 PLACE YVON PLOURDE, CHARLEMAGNE, QUÉBEC, J5Z 3E1</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="cdfeeb7a-237a-4faf-bd77-701eb91f6fdb" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="cdfeeb7a-237a-4faf-bd77-701eb91f6fdb" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_15PLACEYVO" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">15 PLACE YVON PLOURDE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312TRSGRAN" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2 ( Très grand, rénové) </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1100$/mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponible: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1150$/mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponible: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412TRSGRAN" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM2_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">4 1/2 ( Très grand, rénové avec salle à manger) </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM2_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1350$/mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM2_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponible: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312TRSGRAN" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM3_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2 ( Très grand, rénové avec salle à manger) </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM3_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1175$/mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM3_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponible: 1er avril 2026</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-90 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-91 c1-92 c1-93 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-94 c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="f64389f3-9b6f-43a3-96b1-593b6954bcc0" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="f64389f3-9b6f-43a3-96b1-593b6954bcc0" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9a c1-68 c1-b c1-c c1-d c1-9b c1-9c c1-9d c1-9e c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container53123" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9f c1-9g c1-9h c1-d c1-9i c1-9j c1-9k c1-9l c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9m c1-9n c1-9o c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Chauffage au gaz naturel (Inclus)</li> | |
| 631 | − <li>Eau chaude (Inclus)</li> | |
| 632 | − <li>Stationnement extérieur (Inclus)</li> | |
| 633 | − <li>Concierge (Inclus)</li> | |
| 634 | − <li>Stationnement intérieur (en sus $)</li> | |
| 635 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">15 Place Yvon Plourde, Charlemagne, QC J5Z 3E1</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-al c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Jonathan Mondor | |
| 636 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506572394" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53125.click,click">450-657-2394</a> | |
| 637 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5144645298" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53126.click,click">514-464-5298</a> | |
| 638 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506576177" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53127.click,click">450-657-6177</a> | |
| 639 | − | |
| 640 | −Bureau | |
| 641 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53128.click,click">450-668-6146</a> | |
| 642 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53129.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-am c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.53130.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ax c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded53124" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-ay c1-h c1-i c1-az c1-7e c1-b0 c1-4 c1-3 c1-u c1-3b c1-b1 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b2 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53131" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53131" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53132" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53132" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53133" value="" data-aid="Téléphone" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53133" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.53134.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.53135.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.53136.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9f c1-9g c1-9h c1-by c1-bz c1-d c1-9i c1-9j c1-9k c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-ar c1-as c1-at c1-b c1-4t c1-au c1-44 c1-av c1-c8 c1-c9 c1-ca c1-aw c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b3 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53139.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53140.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53141.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53142.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53143.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53144.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-b5 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.53145.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget53146" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget53146-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-ap c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.53147.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget53146-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 643 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/3918bb8b4c6c189/script.js" crossorigin></script> | |
| 644 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 645 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/3c572388fb3ed36f/script.js" crossorigin></script> | |
| 646 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 647 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 648 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 649 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 650 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 651 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 652 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 653 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 654 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/43776db38af328a37b02.html
+0 −491
@@ -1,491 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>Appartements à louer sur la Rive-Nord de Montréal</title><meta name="description" content="Nos immeubles sont situés à Montréal et principalement sur la rive-nord, Laval, Terrebonne, Ste-Thérèse, Charlemagne, Joliette et Grand-Mère."/><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/appartements-%C3%A0-louer"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:description" content="Nos immeubles sont situés à Montréal et principalement sur la rive-nord, Laval, Terrebonne, Ste-Thérèse, Charlemagne, Joliette et Grand-Mère."/> | |
| 5 | −<meta property="og:type" content="website"/> | |
| 6 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 7 | −<meta property="og:locale" content="fr_CA"/> | |
| 8 | −<meta name="twitter:card" content="summary"/> | |
| 9 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 10 | −<meta name="twitter:description" content="Nos immeubles sont situés à Montréal et principalement sur la rive-nord, Laval, Terrebonne, Ste-Thérèse, Charlemagne, Joliette et Grand-Mère."/> | |
| 11 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 12 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 13 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 14 | −@font-face { | |
| 15 | − font-family: 'Fjalla One'; | |
| 16 | − font-style: normal; | |
| 17 | − font-weight: 400; | |
| 18 | − font-display: swap; | |
| 19 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 20 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 21 | −} | |
| 22 | −/* vietnamese */ | |
| 23 | −@font-face { | |
| 24 | − font-family: 'Fjalla One'; | |
| 25 | − font-style: normal; | |
| 26 | − font-weight: 400; | |
| 27 | − font-display: swap; | |
| 28 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 29 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 30 | −} | |
| 31 | −/* latin-ext */ | |
| 32 | −@font-face { | |
| 33 | − font-family: 'Fjalla One'; | |
| 34 | − font-style: normal; | |
| 35 | − font-weight: 400; | |
| 36 | − font-display: swap; | |
| 37 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 38 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 39 | −} | |
| 40 | −/* latin */ | |
| 41 | −@font-face { | |
| 42 | − font-family: 'Fjalla One'; | |
| 43 | − font-style: normal; | |
| 44 | − font-weight: 400; | |
| 45 | − font-display: swap; | |
| 46 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 47 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 48 | −} | |
| 49 | − | |
| 50 | −/* cyrillic-ext */ | |
| 51 | −@font-face { | |
| 52 | − font-family: 'Source Sans Pro'; | |
| 53 | − font-style: italic; | |
| 54 | − font-weight: 300; | |
| 55 | − font-display: swap; | |
| 56 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 57 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 58 | −} | |
| 59 | −/* cyrillic */ | |
| 60 | −@font-face { | |
| 61 | − font-family: 'Source Sans Pro'; | |
| 62 | − font-style: italic; | |
| 63 | − font-weight: 300; | |
| 64 | − font-display: swap; | |
| 65 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 66 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 67 | −} | |
| 68 | −/* greek-ext */ | |
| 69 | −@font-face { | |
| 70 | − font-family: 'Source Sans Pro'; | |
| 71 | − font-style: italic; | |
| 72 | − font-weight: 300; | |
| 73 | − font-display: swap; | |
| 74 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 75 | − unicode-range: U+1F00-1FFF; | |
| 76 | −} | |
| 77 | −/* greek */ | |
| 78 | −@font-face { | |
| 79 | − font-family: 'Source Sans Pro'; | |
| 80 | − font-style: italic; | |
| 81 | − font-weight: 300; | |
| 82 | − font-display: swap; | |
| 83 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 84 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 85 | −} | |
| 86 | −/* vietnamese */ | |
| 87 | −@font-face { | |
| 88 | − font-family: 'Source Sans Pro'; | |
| 89 | − font-style: italic; | |
| 90 | − font-weight: 300; | |
| 91 | − font-display: swap; | |
| 92 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 93 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 94 | −} | |
| 95 | −/* latin-ext */ | |
| 96 | −@font-face { | |
| 97 | − font-family: 'Source Sans Pro'; | |
| 98 | − font-style: italic; | |
| 99 | − font-weight: 300; | |
| 100 | − font-display: swap; | |
| 101 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 102 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 103 | −} | |
| 104 | −/* latin */ | |
| 105 | −@font-face { | |
| 106 | − font-family: 'Source Sans Pro'; | |
| 107 | − font-style: italic; | |
| 108 | − font-weight: 300; | |
| 109 | − font-display: swap; | |
| 110 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 111 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 112 | −} | |
| 113 | −/* cyrillic-ext */ | |
| 114 | −@font-face { | |
| 115 | − font-family: 'Source Sans Pro'; | |
| 116 | − font-style: italic; | |
| 117 | − font-weight: 400; | |
| 118 | − font-display: swap; | |
| 119 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 120 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 121 | −} | |
| 122 | −/* cyrillic */ | |
| 123 | −@font-face { | |
| 124 | − font-family: 'Source Sans Pro'; | |
| 125 | − font-style: italic; | |
| 126 | − font-weight: 400; | |
| 127 | − font-display: swap; | |
| 128 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 129 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 130 | −} | |
| 131 | −/* greek-ext */ | |
| 132 | −@font-face { | |
| 133 | − font-family: 'Source Sans Pro'; | |
| 134 | − font-style: italic; | |
| 135 | − font-weight: 400; | |
| 136 | − font-display: swap; | |
| 137 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 138 | − unicode-range: U+1F00-1FFF; | |
| 139 | −} | |
| 140 | −/* greek */ | |
| 141 | −@font-face { | |
| 142 | − font-family: 'Source Sans Pro'; | |
| 143 | − font-style: italic; | |
| 144 | − font-weight: 400; | |
| 145 | − font-display: swap; | |
| 146 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 147 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 148 | −} | |
| 149 | −/* vietnamese */ | |
| 150 | −@font-face { | |
| 151 | − font-family: 'Source Sans Pro'; | |
| 152 | − font-style: italic; | |
| 153 | − font-weight: 400; | |
| 154 | − font-display: swap; | |
| 155 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 156 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 157 | −} | |
| 158 | −/* latin-ext */ | |
| 159 | −@font-face { | |
| 160 | − font-family: 'Source Sans Pro'; | |
| 161 | − font-style: italic; | |
| 162 | − font-weight: 400; | |
| 163 | − font-display: swap; | |
| 164 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 165 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 166 | −} | |
| 167 | −/* latin */ | |
| 168 | −@font-face { | |
| 169 | − font-family: 'Source Sans Pro'; | |
| 170 | − font-style: italic; | |
| 171 | − font-weight: 400; | |
| 172 | − font-display: swap; | |
| 173 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 174 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 175 | −} | |
| 176 | −/* cyrillic-ext */ | |
| 177 | −@font-face { | |
| 178 | − font-family: 'Source Sans Pro'; | |
| 179 | − font-style: italic; | |
| 180 | − font-weight: 700; | |
| 181 | − font-display: swap; | |
| 182 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 183 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 184 | −} | |
| 185 | −/* cyrillic */ | |
| 186 | −@font-face { | |
| 187 | − font-family: 'Source Sans Pro'; | |
| 188 | − font-style: italic; | |
| 189 | − font-weight: 700; | |
| 190 | − font-display: swap; | |
| 191 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 192 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 193 | −} | |
| 194 | −/* greek-ext */ | |
| 195 | −@font-face { | |
| 196 | − font-family: 'Source Sans Pro'; | |
| 197 | − font-style: italic; | |
| 198 | − font-weight: 700; | |
| 199 | − font-display: swap; | |
| 200 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 201 | − unicode-range: U+1F00-1FFF; | |
| 202 | −} | |
| 203 | −/* greek */ | |
| 204 | −@font-face { | |
| 205 | − font-family: 'Source Sans Pro'; | |
| 206 | − font-style: italic; | |
| 207 | − font-weight: 700; | |
| 208 | − font-display: swap; | |
| 209 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 210 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 211 | −} | |
| 212 | −/* vietnamese */ | |
| 213 | −@font-face { | |
| 214 | − font-family: 'Source Sans Pro'; | |
| 215 | − font-style: italic; | |
| 216 | − font-weight: 700; | |
| 217 | − font-display: swap; | |
| 218 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 219 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 220 | −} | |
| 221 | −/* latin-ext */ | |
| 222 | −@font-face { | |
| 223 | − font-family: 'Source Sans Pro'; | |
| 224 | − font-style: italic; | |
| 225 | − font-weight: 700; | |
| 226 | − font-display: swap; | |
| 227 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 228 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 229 | −} | |
| 230 | −/* latin */ | |
| 231 | −@font-face { | |
| 232 | − font-family: 'Source Sans Pro'; | |
| 233 | − font-style: italic; | |
| 234 | − font-weight: 700; | |
| 235 | − font-display: swap; | |
| 236 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 237 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 238 | −} | |
| 239 | −/* cyrillic-ext */ | |
| 240 | −@font-face { | |
| 241 | − font-family: 'Source Sans Pro'; | |
| 242 | − font-style: normal; | |
| 243 | − font-weight: 300; | |
| 244 | − font-display: swap; | |
| 245 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 246 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 247 | −} | |
| 248 | −/* cyrillic */ | |
| 249 | −@font-face { | |
| 250 | − font-family: 'Source Sans Pro'; | |
| 251 | − font-style: normal; | |
| 252 | − font-weight: 300; | |
| 253 | − font-display: swap; | |
| 254 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 255 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 256 | −} | |
| 257 | −/* greek-ext */ | |
| 258 | −@font-face { | |
| 259 | − font-family: 'Source Sans Pro'; | |
| 260 | − font-style: normal; | |
| 261 | − font-weight: 300; | |
| 262 | − font-display: swap; | |
| 263 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 264 | − unicode-range: U+1F00-1FFF; | |
| 265 | −} | |
| 266 | −/* greek */ | |
| 267 | −@font-face { | |
| 268 | − font-family: 'Source Sans Pro'; | |
| 269 | − font-style: normal; | |
| 270 | − font-weight: 300; | |
| 271 | − font-display: swap; | |
| 272 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 273 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 274 | −} | |
| 275 | −/* vietnamese */ | |
| 276 | −@font-face { | |
| 277 | − font-family: 'Source Sans Pro'; | |
| 278 | − font-style: normal; | |
| 279 | − font-weight: 300; | |
| 280 | − font-display: swap; | |
| 281 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 282 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 283 | −} | |
| 284 | −/* latin-ext */ | |
| 285 | −@font-face { | |
| 286 | − font-family: 'Source Sans Pro'; | |
| 287 | − font-style: normal; | |
| 288 | − font-weight: 300; | |
| 289 | − font-display: swap; | |
| 290 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 291 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 292 | −} | |
| 293 | −/* latin */ | |
| 294 | −@font-face { | |
| 295 | − font-family: 'Source Sans Pro'; | |
| 296 | − font-style: normal; | |
| 297 | − font-weight: 300; | |
| 298 | − font-display: swap; | |
| 299 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 300 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 301 | −} | |
| 302 | −/* cyrillic-ext */ | |
| 303 | −@font-face { | |
| 304 | − font-family: 'Source Sans Pro'; | |
| 305 | − font-style: normal; | |
| 306 | − font-weight: 400; | |
| 307 | − font-display: swap; | |
| 308 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 309 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 310 | −} | |
| 311 | −/* cyrillic */ | |
| 312 | −@font-face { | |
| 313 | − font-family: 'Source Sans Pro'; | |
| 314 | − font-style: normal; | |
| 315 | − font-weight: 400; | |
| 316 | − font-display: swap; | |
| 317 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 318 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 319 | −} | |
| 320 | −/* greek-ext */ | |
| 321 | −@font-face { | |
| 322 | − font-family: 'Source Sans Pro'; | |
| 323 | − font-style: normal; | |
| 324 | − font-weight: 400; | |
| 325 | − font-display: swap; | |
| 326 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 327 | − unicode-range: U+1F00-1FFF; | |
| 328 | −} | |
| 329 | −/* greek */ | |
| 330 | −@font-face { | |
| 331 | − font-family: 'Source Sans Pro'; | |
| 332 | − font-style: normal; | |
| 333 | − font-weight: 400; | |
| 334 | − font-display: swap; | |
| 335 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 336 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 337 | −} | |
| 338 | −/* vietnamese */ | |
| 339 | −@font-face { | |
| 340 | − font-family: 'Source Sans Pro'; | |
| 341 | − font-style: normal; | |
| 342 | − font-weight: 400; | |
| 343 | − font-display: swap; | |
| 344 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 345 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 346 | −} | |
| 347 | −/* latin-ext */ | |
| 348 | −@font-face { | |
| 349 | − font-family: 'Source Sans Pro'; | |
| 350 | − font-style: normal; | |
| 351 | − font-weight: 400; | |
| 352 | − font-display: swap; | |
| 353 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 354 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 355 | −} | |
| 356 | −/* latin */ | |
| 357 | −@font-face { | |
| 358 | − font-family: 'Source Sans Pro'; | |
| 359 | − font-style: normal; | |
| 360 | − font-weight: 400; | |
| 361 | − font-display: swap; | |
| 362 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 363 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 364 | −} | |
| 365 | −/* cyrillic-ext */ | |
| 366 | −@font-face { | |
| 367 | − font-family: 'Source Sans Pro'; | |
| 368 | − font-style: normal; | |
| 369 | − font-weight: 700; | |
| 370 | − font-display: swap; | |
| 371 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 372 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 373 | −} | |
| 374 | −/* cyrillic */ | |
| 375 | −@font-face { | |
| 376 | − font-family: 'Source Sans Pro'; | |
| 377 | − font-style: normal; | |
| 378 | − font-weight: 700; | |
| 379 | − font-display: swap; | |
| 380 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 381 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 382 | −} | |
| 383 | −/* greek-ext */ | |
| 384 | −@font-face { | |
| 385 | − font-family: 'Source Sans Pro'; | |
| 386 | − font-style: normal; | |
| 387 | − font-weight: 700; | |
| 388 | − font-display: swap; | |
| 389 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 390 | − unicode-range: U+1F00-1FFF; | |
| 391 | −} | |
| 392 | −/* greek */ | |
| 393 | −@font-face { | |
| 394 | − font-family: 'Source Sans Pro'; | |
| 395 | − font-style: normal; | |
| 396 | − font-weight: 700; | |
| 397 | − font-display: swap; | |
| 398 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 399 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 400 | −} | |
| 401 | −/* vietnamese */ | |
| 402 | −@font-face { | |
| 403 | − font-family: 'Source Sans Pro'; | |
| 404 | − font-style: normal; | |
| 405 | − font-weight: 700; | |
| 406 | − font-display: swap; | |
| 407 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 408 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 409 | −} | |
| 410 | −/* latin-ext */ | |
| 411 | −@font-face { | |
| 412 | − font-family: 'Source Sans Pro'; | |
| 413 | − font-style: normal; | |
| 414 | − font-weight: 700; | |
| 415 | − font-display: swap; | |
| 416 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 417 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 418 | −} | |
| 419 | −/* latin */ | |
| 420 | −@font-face { | |
| 421 | − font-family: 'Source Sans Pro'; | |
| 422 | − font-style: normal; | |
| 423 | − font-weight: 700; | |
| 424 | − font-display: swap; | |
| 425 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 426 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 427 | −} | |
| 428 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 429 | − | |
| 430 | −</style> | |
| 431 | −<style>/* | |
| 432 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 433 | − | |
| 434 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 435 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 436 | − | |
| 437 | −—————————————————————————————- | |
| 438 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 439 | −—————————————————————————————- | |
| 440 | −*/ | |
| 441 | − | |
| 442 | −/* | |
| 443 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 444 | − | |
| 445 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 446 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 447 | − | |
| 448 | −—————————————————————————————- | |
| 449 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 450 | −—————————————————————————————- | |
| 451 | −*/ | |
| 452 | −</style> | |
| 453 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{color:rgb(76, 125, 0)}.x .c1-4c{font-weight:700}.x .c1-4d{transition:transform .33s ease-in-out}.x .c1-4e{transform:rotate(0deg)}.x .c1-4f{padding-left:16px}.x .c1-4g{padding-right:16px}.x .c1-4h{border-radius:4px}.x .c1-4i{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4j{position:absolute}.x .c1-4k{top:32px}.x .c1-4l{max-height:45vh}.x .c1-4m{overflow-y:auto}.x .c1-4n{z-index:1003}.x .c1-4q{color:rgb(94, 94, 94)}.x .c1-4r:last-child{margin-bottom:0}.x .c1-4s{padding-top:4px}.x .c1-4t{padding-bottom:4px}.x .c1-4u:active{color:rgb(79, 130, 0)}.x .c1-4v{right:0px}.x .c1-4w{margin-top:8px}.x .c1-4x{margin-bottom:8px}.x .c1-4y{cursor:default}.x .c1-4z{margin-left:24px}.x .c1-51{flex-direction:column}.x .c1-52{flex-grow:1}.x .c1-53{flex-basis:100%}.x .c1-58{box-sizing:border-box}.x .c1-59{flex-wrap:nowrap}.x .c1-5a{margin-right:-0px}.x .c1-5b{margin-bottom:-0px}.x .c1-5c{margin-left:-0px}.x .c1-5d{justify-content:flex-start}.x .c1-5i{flex-shrink:0}.x .c1-5j{flex-basis:10%}.x .c1-5k{max-width:10%}.x .c1-5l{padding-right:0px}.x .c1-5m{padding-bottom:0px}.x .c1-5n{padding-left:0px}.x .c1-5s:hover{color:rgb(76, 125, 0)}.x .c1-5t:active{color:rgb(25, 48, 0)}.x .c1-5u{flex-shrink:1}.x .c1-5v{flex-basis:80%}.x .c1-5w{max-width:80%}.x .c1-5x{margin-left:8px}.x .c1-5y{margin-right:8px}.x .c1-5z{text-align:center}.x .c1-60{position:fixed}.x .c1-61{top:0px}.x .c1-62{height:100%}.x .c1-63{z-index:10002}.x .c1-64{-webkit-overflow-scrolling:touch}.x .c1-65{transform:translateX(-249vw)}.x .c1-66{overscroll-behavior:contain}.x .c1-67{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-68{transition:transform .3s ease-in-out}.x .c1-69{overflow:hidden}.x .c1-6a{line-height:1.3em}.x .c1-6b{font-style:normal}.x .c1-6c{top:15px}.x .c1-6d{right:15px}.x .c1-6e:hover{color:rgb(79, 130, 0)}.x .c1-6f{overflow-x:hidden}.x .c1-6g{overscroll-behavior:none}.x .c1-6h{margin-bottom:32px}.x .c1-6i > :not(:first-child){margin-top:16px}.x .c1-6j{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6k{border-bottom-width:1px}.x .c1-6l{border-bottom-style:solid}.x .c1-6m:last-child{border-bottom:0}.x .c1-6n{min-width:200px}.x .c1-6o{font-size:22px}.x .c1-6u{pointer-events:none}.x .c1-6v{border-bottom-width:0}.x .c1-6w:last-child{padding-bottom:24px}.x .c1-6x{padding-left:40px}.x .c1-6y{line-height:1.4}.x .c1-6z{margin-bottom:40px}.x .c1-70{font-size:32px}.x .c1-71{color:rgb(99, 163, 0)}.x .c1-78{font-size:unset}.x .c1-79{font-family:unset}.x .c1-7a{letter-spacing:unset}.x .c1-7b{text-transform:unset}.x .c1-7c{line-height:0px}.x .c1-7d{border-color:rgb(226, 226, 226)}.x .c1-7e{border-bottom-width:2px}.x .c1-7f{border-style:solid}.x .c1-7g{margin-top:24px}.x .c1-7h{width:50px}.x .c1-7i{flex-wrap:wrap}.x .c1-7j{margin-right:-12px}.x .c1-7k{margin-bottom:-24px}.x .c1-7l{margin-left:-12px}.x .c1-7m{padding-right:12px}.x .c1-7n{padding-left:12px}.x .c1-7r{margin-bottom:24px}.x .c1-7u{line-height:1.25}.x .c1-7v{-moz-column-gap:40px}.x .c1-7w{-webkit-column-gap:40px}.x .c1-7x{column-gap:40px}.x .c1-7y{-webkit-column-break-inside:avoid}.x .c1-7z{break-inside:avoid-column}.x .c1-80{display:table}.x .c1-84{line-height:1}.x .c1-8b{font-size:inherit !important}.x .c1-8c{line-height:inherit}.x .c1-8d{font-style:italic}.x .c1-8e{text-decoration:line-through}.x .c1-8f{text-decoration:underline}.x .c1-8g{border-bottom-width:1px}.x .c1-8h{margin-top:32px}.x .c1-8i{flex-basis:83.33333333333334%}.x .c1-8j{max-width:83.33333333333334%}.x .c1-8k{margin-left:8.333333333333332%}.x .c1-8l{color:rgb(89, 89, 89)}.x .c1-8m{font-size:12px}.x .c1-8r{border-color:rgb(218, 218, 218)}.x .c1-8s{border-top-width:1px}.x .c1-8t{border-top-style:solid}.x .c1-8u{color:rgb(82, 82, 82)}.x .c1-8v{list-style-type:none}.x .c1-8z{padding-top:40px}.x .c1-90{margin-bottom:4px}.x .c1-91{left:0}.x .c1-92{bottom:0}.x .c1-93{right:0}.x .c1-94{z-index:10003}.x .c1-95{background-color:rgba(0, 0, 0, 0.6)}.x .c1-9k{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-9l{max-height:90vh}.x .c1-9m{height:max-content}.x .c1-9n{border-radius:12px}.x .c1-9o{max-width:515px}.x .c1-a4{z-index:1}.x .c1-a5{padding-right:4px}.x .c1-a6{padding-left:4px}.x .c1-a7{border-radius:50%}.x .c1-a8{height:22px}.x .c1-a9{width:22px}.x .c1-aa{align-self:center}.x .c1-ab{height:auto}.x .c1-ac > *:not(:last-child){margin-bottom:0px}.x .c1-af > *:not(:last-child){margin-bottom:16px}.x .c1-ag{padding-top:32px}.x .c1-ah{padding-right:32px}.x .c1-ai{padding-bottom:32px}.x .c1-aj{border-style:none}.x .c1-ak{display:inline-flex}.x .c1-al{min-height:56px}.x .c1-am{border-radius:4px}.x .c1-an{color:rgb(0, 0, 0)}.x .c1-ao{background-color:rgb(102, 168, 0)}.x .c1-ap{text-shadow:none}.x .c1-aq:hover{background-color:rgb(121, 197, 0)}</style> | |
| 454 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-54{max-height:80px}}@media (max-width: 767px){.x .c1-55{height:104px}}@media (max-width: 767px){.x .c1-8w{flex-direction:column}}@media (max-width: 767px){.x .c1-8x{padding-top:4px}}@media (max-width: 767px){.x .c1-8y{padding-bottom:4px}}@media (max-width: 767px){.x .c1-9p{position:relative}}@media (max-width: 767px){.x .c1-9q{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-9r{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-9s{padding-bottom:16px}}@media (max-width: 767px){.x .c1-9t{max-height:90vh}}@media (max-width: 767px){.x .c1-9u{border-radius:12px}}@media (max-width: 767px){.x .c1-9v{margin-top:16px}}@media (max-width: 767px){.x .c1-9w{margin-right:16px}}@media (max-width: 767px){.x .c1-9x{margin-bottom:16px}}@media (max-width: 767px){.x .c1-9y{margin-left:16px}}@media (max-width: 767px){.x .c1-9z{max-width:90vw}}</style> | |
| 455 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4p{right:0px}}@media (min-width: 768px){.x .c1-5e{margin-top:0}}@media (min-width: 768px){.x .c1-5f{margin-right:-24px}}@media (min-width: 768px){.x .c1-5g{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5h{margin-left:-24px}}@media (min-width: 768px){.x .c1-5o{padding-top:0}}@media (min-width: 768px){.x .c1-5p{padding-right:24px}}@media (min-width: 768px){.x .c1-5q{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5r{padding-left:24px}}@media (min-width: 768px){.x .c1-6p{font-size:22px}}@media (min-width: 768px){.x .c1-72{font-size:38px}}@media (min-width: 768px){.x .c1-7o{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-7p{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-7q{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-7s{margin-bottom:0}}@media (min-width: 768px){.x .c1-7t{padding-bottom:0}}@media (min-width: 768px){.x .c1-81{flex-direction:row}}@media (min-width: 768px){.x .c1-82{min-width:0}}@media (min-width: 768px){.x .c1-83{max-width:65%}}@media (min-width: 768px){.x .c1-85{max-width:25%}}@media (min-width: 768px){.x .c1-86{text-align:right}}@media (min-width: 768px){.x .c1-87{margin-right:0}}@media (min-width: 768px){.x .c1-88{margin-left:0}}@media (min-width: 768px){.x .c1-89{flex-basis:75%}}@media (min-width: 768px){.x .c1-8a{max-width:75%}}@media (min-width: 768px){.x .c1-8n{font-size:12px}}@media (min-width: 768px){.x .c1-96{position:absolute}}@media (min-width: 768px){.x .c1-97{transform:none}}@media (min-width: 768px){.x .c1-98{max-width:600px}}@media (min-width: 768px){.x .c1-99{margin-top:24px}}@media (min-width: 768px){.x .c1-9a{margin-bottom:24px}}@media (min-width: 768px){.x .c1-9b{margin-left:auto}}@media (min-width: 768px){.x .c1-9c{margin-right:auto}}@media (min-width: 768px){.x .c1-9d{display:flex}}@media (min-width: 768px){.x .c1-9e{align-items:center}}@media (min-width: 768px){.x .c1-9f{pointer-events:none}}@media (min-width: 768px){.x .c1-9g{justify-content:center}}@media (min-width: 768px){.x .c1-9h:before{display:block}}@media (min-width: 768px){.x .c1-9i:before{height:90vh}}@media (min-width: 768px){.x .c1-9j:before{content:""}}@media (min-width: 768px){.x .c1-a0{pointer-events:auto}}@media (min-width: 768px){.x .c1-a1{border-radius:12px}}@media (min-width: 768px){.x .c1-a2{max-width:515px}}@media (min-width: 768px){.x .c1-ad{padding-left:0px}}@media (min-width: 768px){.x .c1-ae{padding-right:0px}}@media (min-width: 768px){.x .c1-ar{width:auto}}</style> | |
| 456 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4o{right:0px}}@media (min-width: 1024px){.x .c1-50{display:none}}@media (min-width: 1024px){.x .c1-56{height:104px}}@media (min-width: 1024px){.x .c1-57{max-height:104px}}@media (min-width: 1024px){.x .c1-6q{min-width:300px}}@media (min-width: 1024px){.x .c1-6r{font-size:22px}}@media (min-width: 1024px){.x .c1-73{text-align:center}}@media (min-width: 1024px){.x .c1-74{margin-left:auto}}@media (min-width: 1024px){.x .c1-75{font-size:38px}}@media (min-width: 1024px){.x .c1-8o{font-size:12px}}@media (min-width: 1024px){.x .c1-a3{max-width:515px}}</style> | |
| 457 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6s{font-size:22px}}@media (min-width: 1280px){.x .c1-76{font-size:44px}}@media (min-width: 1280px){.x .c1-8p{font-size:12px}}</style> | |
| 458 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6t{font-size:24px}}@media (min-width: 1536px){.x .c1-77{font-size:48px}}@media (min-width: 1536px){.x .c1-8q{font-size:14px}}</style> | |
| 459 | −<style>@keyframes opacity-bounce { | |
| 460 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 461 | − 60% { transform: translateY(-20%); } | |
| 462 | − 100% { opacity: 1; transform: translateY(0); } | |
| 463 | − }</style> | |
| 464 | −<style>.gd-ad-flex-parent { | |
| 465 | − animation-name: opacity-bounce; | |
| 466 | − animation-duration: 800ms; | |
| 467 | − animation-delay: 400ms; | |
| 468 | − animation-fill-mode: forwards; | |
| 469 | − animation-timing-function: ease; | |
| 470 | − opacity: 0;</style> | |
| 471 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 472 | −<script>"use strict"; | |
| 473 | − | |
| 474 | −if ('serviceWorker' in navigator) { | |
| 475 | − window.addEventListener('load', function () { | |
| 476 | − navigator.serviceWorker.register('/sw.js'); | |
| 477 | − }); | |
| 478 | −}</script></head> | |
| 479 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-190514" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-190515" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-190516"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190519.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190515" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190520.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-190515190518-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-190521" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190523.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLinkActive" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-b c1-4b c1-44 c1-4c c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Active.190524.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190525" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190526.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4d c1-4e c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4f c1-4g c1-4h c1-4i c1-4j c1-4k c1-3o c1-4l c1-4m c1-n c1-4n c1-b c1-c c1-4o c1-4p c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190527.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190528.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190529.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190530.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190531.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190532.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190533.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190534.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190535.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190536.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190537.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190538.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190539.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190540.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190541.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190542.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190543.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190544.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190545.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190546.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190547.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190548.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190549.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190550.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190551.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190552.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190553.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190554.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190555.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190556.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190557.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190558.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190559.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190560.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190521-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190561.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190562.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190563.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190564.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190565.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190566" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190567.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4d c1-4e c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-190522" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4f c1-4g c1-4h c1-4i c1-4j c1-4v c1-4k c1-3o c1-4l c1-4m c1-n c1-4n c1-b c1-c c1-4o c1-4p c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-190522" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190568.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkActive" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-190522" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-1o c1-44 c1-4c c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Active.190569.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-190522" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4y c1-4w c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190570.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4z c1-3f c1-3g c1-3h c1-3i c1-4s c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-190522" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190571.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-190522" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190572.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-190522" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190573.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-190522" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190574.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-190522" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190575.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-190522" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190576.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-190522" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190577.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-190522" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190578.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-190522" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190579.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-190522" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190580.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-190522" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190581.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-190522" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190582.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-190522" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190583.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-190522" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190584.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-190522" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190585.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-190522" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190586.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-190522" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190587.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-190522" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190588.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-190522" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190589.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-190522" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190590.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-190522" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190591.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-190522" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190592.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-190522" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190593.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-190522" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190594.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-190522" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190595.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-190522" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190596.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-190522" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190597.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-190522" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190598.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-190522" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190599.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-190522" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190600.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-190522" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190601.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-190522" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190602.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-190522" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190603.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-190522" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190604.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-190522" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4s c1-4t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190605.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-190522" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190606.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-190522" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190607.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-190522" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190608.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-16 c1-b c1-c c1-4r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-190522" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4w c1-4x c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4u c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190609.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-50 c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-51 c1-w c1-3b c1-y c1-z c1-52 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-53 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190610.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190515" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-54 c1-2d c1-2e c1-2f c1-2g c1-55 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-56 c1-2q c1-57 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-59 c1-1y c1-5a c1-5b c1-5c c1-w c1-5d c1-b c1-c c1-5e c1-5f c1-5g c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5i c1-5j c1-5k c1-1s c1-5l c1-5m c1-5n c1-u c1-w c1-b c1-c c1-5o c1-5p c1-5q c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="190611" aria-expanded="false" toggleId="n-190515-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5d c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5s c1-5t c1-d c1-50 c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.190612.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-5v c1-5w c1-1s c1-5l c1-5m c1-5n c1-u c1-3b c1-b c1-c c1-5o c1-5p c1-5q c1-5r c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5x c1-5y c1-5z c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190613.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5i c1-5j c1-5k c1-1s c1-5l c1-5m c1-5n c1-u c1-2s c1-b c1-c c1-5o c1-5p c1-5q c1-5r c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-190515-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-60 c1-61 c1-4 c1-62 c1-4m c1-63 c1-h c1-64 c1-65 c1-66 c1-67 c1-68 c1-3p c1-69 c1-u c1-51 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-6a c1-6b c1-4j c1-6c c1-6d c1-2y c1-b c1-6e c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-190515-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4m c1-6f c1-4 c1-6g c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5d c1-w c1-6h c1-51 c1-6i c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-190515-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-190515-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190614.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLinkActive" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-4c c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Active.190615.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="190616" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.190617.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4d c1-4e c1-20 c1-3a c1-5x c1-5i c1-6u c1-b c1-6o c1-6p c1-6r c1-6s c1-6t"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190618.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190619.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190620.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190621.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190622.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190623.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190624.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190625.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190626.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190627.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190628.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190629.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190630.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190631.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190632.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190633.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190634.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190635.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190636.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190637.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190638.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190639.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190640.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190641.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190642.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190643.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190644.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190645.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190646.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190647.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190648.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190649.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190650.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190651.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6v c1-6l c1-b c1-c c1-4r c1-6m c1-6w c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6x c1-s c1-w c1-6n c1-x c1-2z c1-b c1-4q c1-c c1-1q c1-4u c1-d c1-6q c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190652.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190653.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190654.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190655.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4q c1-1z c1-3u c1-6j c1-6k c1-6l c1-b c1-c c1-4r c1-6m c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6n c1-x c1-b c1-2x c1-6o c1-2z c1-1q c1-4u c1-6p c1-6q c1-6r c1-6s c1-6t" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190656.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-50 c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="d5252802-d709-4e96-af20-3b92f5bd7d44" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="d5252802-d709-4e96-af20-3b92f5bd7d44" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingBeta" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-6y c1-p c1-3f c1-1y c1-6z c1-5z c1-15 c1-70 c1-71 c1-2z c1-72 c1-73 c1-74 c1-75 c1-76 c1-77"><span data-ux="Element" class="x-el x-el-span c1-78 c1-34 c1-79 c1-7a c1-7b">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-7c c1-15 c1-70 c1-72 c1-75 c1-76 c1-77"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-7d c1-7e c1-7f c1-7g c1-1z c1-7h c1-14 c1-15 c1-70 c1-72 c1-75 c1-76 c1-77"/></div></h1><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7k c1-7l c1-b c1-c c1-5e c1-5f c1-5g c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-z c1-7n c1-b c1-c c1-7o c1-7p c1-7q c1-5o c1-5p c1-5q c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_5080PIEIXM" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">5080 Pie-IX, Montréal</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1050$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/5080-5100-pie-ix#5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf" rel="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-section-jump="5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/5080-5100-pie-ix#5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf" rel="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-section-jump="5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_5100PIEIXM" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">5100 Pie-IX, MONTRÉAL</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1000$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="336451df-5c3f-4389-aa6b-f2128d9beb2b">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1499$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="336451df-5c3f-4389-aa6b-f2128d9beb2b">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_2660DELARE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_2" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">2660 De la Rennaissance, Laval</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_2" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION2_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION2_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1300$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION2_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er avril 2026</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/2660-de-la-rennaissance#c170d160-33e2-4306-86f7-c416087a6907" rel="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-section-jump="c170d160-33e2-4306-86f7-c416087a6907">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_15PLACEYVO" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_3" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">15 Place Yvon Plourde, Charlemagne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_3" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION3_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION3_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION3_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant ( Très grand, rénové )</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#cdfeeb7a-237a-4faf-bd77-701eb91f6fdb" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="cdfeeb7a-237a-4faf-bd77-701eb91f6fdb">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION3_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION3_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1150$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION3_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="336451df-5c3f-4389-aa6b-f2128d9beb2b">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION3_ITEM2_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION3_ITEM2_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1350$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION3_ITEM2_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant ( Très grand, rénové avec salle à manger )</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="336451df-5c3f-4389-aa6b-f2128d9beb2b">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION3_ITEM3_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION3_ITEM3_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1175$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION3_ITEM3_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er avril 2026 </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b" rel="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-section-jump="336451df-5c3f-4389-aa6b-f2128d9beb2b">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1108MCKENZ" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_4" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1108 McKenzie, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_4" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION4_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION4_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1375$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION4_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1064-%C3%A0-1108-mc-kenzie#d8da69bf-a3de-4b5e-8d5f-9cfc8e6e0a02" rel="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-section-jump="d8da69bf-a3de-4b5e-8d5f-9cfc8e6e0a02">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1305FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_5" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1305 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_5" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION5_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION5_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">995$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION5_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1305-fran%C3%A7ois-paquin#9f4f0e24-4771-40e1-8047-c26e35dba891" rel="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-section-jump="9f4f0e24-4771-40e1-8047-c26e35dba891">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1355FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_6" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1355 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_6" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION6_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION6_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">995$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION6_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1 mars 2026</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1305-fran%C3%A7ois-paquin#9f4f0e24-4771-40e1-8047-c26e35dba891" rel="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-section-jump="9f4f0e24-4771-40e1-8047-c26e35dba891">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1380FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_7" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1380 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_7" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_212" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION7_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">2 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION7_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">800$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION7_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1370-1380-fran%C3%A7ois-paquin#d1f6a43d-fd4b-4814-87ab-cc2ea103672d" rel="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-section-jump="d1f6a43d-fd4b-4814-87ab-cc2ea103672d">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_212" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION7_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">2 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION7_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">995$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION7_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1370-1380-fran%C3%A7ois-paquin#d1f6a43d-fd4b-4814-87ab-cc2ea103672d" rel="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-section-jump="d1f6a43d-fd4b-4814-87ab-cc2ea103672d">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1390FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_8" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1390 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_8" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION8_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION8_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION8_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1405-fran%C3%A7ois-paquin" rel="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1405FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_9" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1405 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_9" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION9_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION9_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION9_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1405-fran%C3%A7ois-paquin#af85a1e7-267d-427a-aa91-4021a4a2fb46" rel="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-section-jump="af85a1e7-267d-427a-aa91-4021a4a2fb46">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1415FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_10" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1415 François-Paquin, Terrebonne</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_10" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION10_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION10_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1000$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION10_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/accueil#412dc1d8-7c4b-4644-83a9-cb09b4db33b8" rel="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-section-jump="412dc1d8-7c4b-4644-83a9-cb09b4db33b8">Plus d'informations</a></span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION10_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION10_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1000$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION10_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1390-fran%C3%A7ois-paquin#ee200386-abf5-4091-9817-11ddc1cdf226" rel="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-section-jump="ee200386-abf5-4091-9817-11ddc1cdf226">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_100PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_11" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">100 Place BROSSEAU, STE-THÉRÈSE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_11" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION11_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION11_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1250$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION11_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/100-110-place-brosseau#ddeee870-d743-406c-ac90-b6fb16b01962" rel="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-section-jump="ddeee870-d743-406c-ac90-b6fb16b01962">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_110PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_12" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">110 Place BROSSEAU, Ste-Thérèse</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_12" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION12_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION12_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1150$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION12_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: Dès maintenant</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/100-110-place-brosseau#ddeee870-d743-406c-ac90-b6fb16b01962" rel="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-section-jump="ddeee870-d743-406c-ac90-b6fb16b01962">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_140PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_13" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">140 Place BROSSEAU, STE-THÉRÈSE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_13" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION13_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION13_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1250$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION13_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er juillet 2026 </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/140-150-place-brosseau" rel="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_150PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_14" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">150 Place BROSSEAU, STE-THÉRÈSE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_14" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION14_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION14_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">1150$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION14_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er juillet 2026 </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/140-150-place-brosseau" rel="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_16022MEAVE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_15" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1602 2ème Avenue, Shawinigan</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_15" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION15_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">3 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION15_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">775$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION15_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er juillet 2026</strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1602-2%C3%A8me-avenue" rel="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7d c1-8g c1-7f c1-4w c1-6z c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_16113MEAVE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-7r c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_16" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-2x c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1611 3ème AVENUE, Shawinigan</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_16" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-51 c1-4x c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION16_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4x c1-b c1-2x c1-6o c1-2z c1-82 c1-83 c1-7s c1-6p c1-6r c1-6s c1-6t">4 1/2 </h4><div data-ux="PriceMajor" data-aid="MENU_SECTION16_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-2x c1-6o c1-2z c1-85 c1-86 c1-5e c1-87 c1-7s c1-88 c1-6p c1-6r c1-6s c1-6t">875$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-1y c1-7j c1-1z c1-7l c1-b c1-c c1-5e c1-5f c1-7s c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-53 c1-t c1-1s c1-7m c1-1u c1-7n c1-b c1-c c1-89 c1-8a c1-5o c1-5p c1-7t c1-5r c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION16_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Disponibilité: 1er août 2026 </strong></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-1o c1-1p c1-1q c1-1r" href="/1611-3%C3%A8me-avenue" rel="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033">Plus d'informations</a></span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-58 c1-v c1-7i c1-8h c1-7j c1-7k c1-7l c1-b c1-c c1-5e c1-5f c1-5g c1-5h c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-58 c1-52 c1-5u c1-8i c1-8j c1-8k c1-1s c1-7m c1-z c1-7n c1-b c1-c c1-5o c1-5p c1-5q c1-5r c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5z c1-b c1-8l c1-8m c1-2z c1-8n c1-8o c1-8p c1-8q">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-8r c1-8s c1-8t c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7r c1-2u c1-b c1-8u c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-4b c1-1p c1-45 c1-5t" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-78 c1-b c1-4b c1-1p c1-45 c1-5t" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5z c1-7g c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-8v c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-8w c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190707.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190708.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190709.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190710.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190711.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-8x c1-8y c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190712.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-8r c1-8g c1-7f c1-1y c1-7r c1-7h c1-p c1-q c1-8z c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-90 c1-2u c1-b c1-8u c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-4b c1-c c1-1p c1-45 c1-5t c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.190713.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget190714" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-60 c1-n c1-3b c1-61 c1-91 c1-92 c1-93 c1-1j c1-1k c1-1l c1-1m c1-94 c1-4m c1-95 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-96 c1-10 c1-97 c1-98 c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-9h c1-9i c1-9j c1-96 c1-10 c1-97 c1-98 c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-d c1-9h c1-9i c1-9j c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-60 c1-u c1-51 c1-3 c1-9k c1-1u c1-9l c1-9m c1-9n c1-9o c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-9p c1-19 c1-8w c1-9q c1-9r c1-9s c1-9t c1-2i c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-10 c1-a0 c1-a1 c1-a2 c1-10 c1-a0 c1-a1 c1-a2 c1-d c1-a3 c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4f c1-4g c1-37 c1-27 c1-4j c1-93 c1-a4 c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget190714-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4s c1-a5 c1-4t c1-a6 c1-1i c1-a7 c1-3 c1-a8 c1-a9 c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-aa c1-t c1-ab c1-1v c1-1t c1-4m c1-4 c1-ac c1-9n c1-b c1-c c1-ad c1-ae c1-a1 c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-af c1-ag c1-ah c1-ai c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4q c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4c c1-8c">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.190715.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget190714-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-aj c1-ak c1-w c1-3b c1-5z c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ah c1-25 c1-27 c1-al c1-am c1-an c1-ao c1-b c1-4c c1-ap c1-c c1-aq c1-ar c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 480 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/87043186ee04907d/script.js" crossorigin></script> | |
| 481 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 482 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/3dbf79234d1f8293/script.js" crossorigin></script> | |
| 483 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 484 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 485 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 486 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 487 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 488 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 489 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 490 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 491 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/4c50a9dc04db74d16bfe.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>2660 De la Rennaissance</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/2660-de-la-rennaissance"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{line-height:1.4}.x .c1-6y{margin-bottom:40px}.x .c1-71{font-size:unset}.x .c1-72{font-family:unset}.x .c1-73{letter-spacing:unset}.x .c1-74{text-transform:unset}.x .c1-75{line-height:0px}.x .c1-76{border-color:rgb(226, 226, 226)}.x .c1-77{border-bottom-width:2px}.x .c1-78{border-style:solid}.x .c1-79{margin-top:24px}.x .c1-7a{width:50px}.x .c1-7b{flex-wrap:wrap}.x .c1-7c{margin-right:-12px}.x .c1-7d{margin-bottom:-24px}.x .c1-7e{margin-left:-12px}.x .c1-7f{padding-right:12px}.x .c1-7g{padding-left:12px}.x .c1-7h{font-size:32px}.x .c1-7i{color:rgb(96, 158, 0)}.x .c1-7n{border-color:rgb(218, 218, 218)}.x .c1-7r{margin-bottom:24px}.x .c1-7u{line-height:1.25}.x .c1-7v{-moz-column-gap:40px}.x .c1-7w{-webkit-column-gap:40px}.x .c1-7x{column-gap:40px}.x .c1-7y{-webkit-column-break-inside:avoid}.x .c1-7z{break-inside:avoid-column}.x .c1-80{display:table}.x .c1-84{line-height:1}.x .c1-8b{font-size:inherit !important}.x .c1-8c{line-height:inherit}.x .c1-8d{font-style:italic}.x .c1-8e{text-decoration:line-through}.x .c1-8f{text-decoration:underline}.x .c1-8g{margin-top:32px}.x .c1-8h{flex-basis:83.33333333333334%}.x .c1-8i{max-width:83.33333333333334%}.x .c1-8j{margin-left:8.333333333333332%}.x .c1-8k{color:rgb(82, 82, 82)}.x .c1-8l{font-size:12px}.x .c1-8q{min-height:300px}.x .c1-95 > p > ol{text-align:left}.x .c1-96 > p > ol{display:block}.x .c1-97 > p > ol{padding-left:1.3em}.x .c1-98 > p > ol{margin-left:16px}.x .c1-99 > p > ol{margin-right:16px}.x .c1-9a > p > ol{margin-top:auto}.x .c1-9b > p > ol{margin-bottom:auto}.x .c1-9c > p > ol{text-wrap:pretty}.x .c1-9d > p > ul{text-align:left}.x .c1-9e > p > ul{display:block}.x .c1-9f > p > ul{padding-left:1.3em}.x .c1-9g > p > ul{margin-left:16px}.x .c1-9h > p > ul{margin-right:16px}.x .c1-9i > p > ul{margin-top:auto}.x .c1-9j > p > ul{margin-bottom:auto}.x .c1-9k > p > ul{text-wrap:pretty}.x .c1-9l > ul{text-align:left}.x .c1-9m > ul{display:block}.x .c1-9n > ul{padding-left:1.3em}.x .c1-9o > ul{margin-left:16px}.x .c1-9p > ul{margin-right:16px}.x .c1-9q > ul{margin-top:auto}.x .c1-9r > ul{margin-bottom:auto}.x .c1-9s > ul{text-wrap:pretty}.x .c1-9t > ol{text-align:left}.x .c1-9u > ol{display:block}.x .c1-9v > ol{padding-left:1.3em}.x .c1-9w > ol{margin-left:16px}.x .c1-9x > ol{margin-right:16px}.x .c1-9y > ol{margin-top:auto}.x .c1-9z > ol{margin-bottom:auto}.x .c1-a0 > ol{text-wrap:pretty}.x .c1-a1{white-space:pre-line}.x .c1-a3{border-style:none}.x .c1-a4{display:inline-flex}.x .c1-a5{padding-right:32px}.x .c1-a6{min-height:56px}.x .c1-a7{border-radius:4px}.x .c1-a8{color:rgb(0, 0, 0)}.x .c1-a9{background-color:rgb(102, 168, 0)}.x .c1-aa{text-shadow:none}.x .c1-ab:hover{background-color:rgb(121, 197, 0)}.x .c1-ad{height:inherit}.x .c1-ae{left:0px}.x .c1-af{z-index:2}.x .c1-ag{transform:translate3d(-120%,0,0)}.x .c1-ah{opacity:0}.x .c1-ai{transition:transform .8s ease, opacity .1s}.x .c1-aj{align-items:flex-start}.x .c1-ak{max-width:600px}.x .c1-al{border-top-width:1px}.x .c1-am{border-right-width:1px}.x .c1-an{border-bottom-width:1px}.x .c1-ao{border-left-width:1px}.x .c1-ap{padding-top:23px}.x .c1-aq{padding-bottom:7px}.x .c1-ar{color:rgb(71, 71, 71)}.x .c1-as::placeholder{color:inherit}.x .c1-at:focus{outline:none}.x .c1-au:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-av:focus + label{font-size:12px}.x .c1-aw:focus + label{top:8px}.x .c1-ax:focus + label{color:rgb(79, 130, 0)}.x .c1-ay:not([value=""]) + label{font-size:12px}.x .c1-az:not([value=""]) + label{top:8px}.x .c1-b0:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-b1::-webkit-input-placeholder{color:inherit}.x .c1-b3{top:33%}.x .c1-b4{left:16px}.x .c1-b5{transition:all .15s ease}.x .c1-b6{resize:vertical}.x .c1-b7{color:rgb(89, 89, 89)}.x .c1-b8{width:fit-content}.x .c1-b9:hover{cursor:pointer}.x .c1-bc{min-height:inherit}.x .c1-bd > *{flex-grow:1}.x .c1-be > *{min-height:inherit}.x .c1-bf{order:initial}.x .c1-bk{right:0px}.x .c1-bl{bottom:0px}.x .c1-bm{position:absolute !important}.x .c1-bn{transform:translate3d(0,0,0)}.x .c1-bo{left:56px}.x .c1-bp{top:8px}.x .c1-bq{min-height:40px}.x .c1-bu{margin-left:-4px}.x .c1-bv{width:18px}.x .c1-bw{height:18px}.x .c1-bx{top:50%}.x .c1-by{right:auto}.x .c1-bz{line-height:0}.x .c1-c0{transform:translateY(-50%)}.x .c1-c1 > img{display:block}.x .c1-c2{margin-left:calc(18px + 8px)}.x .c1-c3{border-top-style:solid}.x .c1-c4{color:rgb(76, 125, 0)}.x .c1-c5{list-style-type:none}.x .c1-c9{padding-top:40px}.x .c1-ca{margin-bottom:4px}.x .c1-cb{z-index:10003}.x .c1-cc{background-color:rgba(0, 0, 0, 0.6)}.x .c1-cr{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-cs{max-height:90vh}.x .c1-ct{height:max-content}.x .c1-cu{border-radius:12px}.x .c1-cv{max-width:515px}.x .c1-db{z-index:1}.x .c1-dc{padding-right:4px}.x .c1-dd{padding-left:4px}.x .c1-de{border-radius:50%}.x .c1-df{height:22px}.x .c1-dg{width:22px}.x .c1-dh{align-self:center}.x .c1-di{height:auto}.x .c1-dj > *:not(:last-child){margin-bottom:0px}.x .c1-dm > *:not(:last-child){margin-bottom:16px}.x .c1-dn{padding-top:32px}.x .c1-do{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-b2{font-size:16px}}@media (max-width: 767px){.x .c1-ba{margin-top:24px}}@media (max-width: 767px){.x .c1-bg{order:-1}}@media (max-width: 767px){.x .c1-br{font-size:12px}}@media (max-width: 767px){.x .c1-bs{left:8px}}@media (max-width: 767px){.x .c1-bt{max-width:90%}}@media (max-width: 767px){.x .c1-c6{flex-direction:column}}@media (max-width: 767px){.x .c1-c7{padding-top:4px}}@media (max-width: 767px){.x .c1-c8{padding-bottom:4px}}@media (max-width: 767px){.x .c1-cw{position:relative}}@media (max-width: 767px){.x .c1-cx{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-cy{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-cz{padding-bottom:16px}}@media (max-width: 767px){.x .c1-d0{max-height:90vh}}@media (max-width: 767px){.x .c1-d1{border-radius:12px}}@media (max-width: 767px){.x .c1-d2{margin-top:16px}}@media (max-width: 767px){.x .c1-d3{margin-right:16px}}@media (max-width: 767px){.x .c1-d4{margin-bottom:16px}}@media (max-width: 767px){.x .c1-d5{margin-left:16px}}@media (max-width: 767px){.x .c1-d6{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7j{font-size:38px}}@media (min-width: 768px){.x .c1-7o{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-7p{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-7q{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-7s{margin-bottom:0}}@media (min-width: 768px){.x .c1-7t{padding-bottom:0}}@media (min-width: 768px){.x .c1-81{flex-direction:row}}@media (min-width: 768px){.x .c1-82{min-width:0}}@media (min-width: 768px){.x .c1-83{max-width:65%}}@media (min-width: 768px){.x .c1-85{max-width:25%}}@media (min-width: 768px){.x .c1-86{text-align:right}}@media (min-width: 768px){.x .c1-87{margin-right:0}}@media (min-width: 768px){.x .c1-88{margin-left:0}}@media (min-width: 768px){.x .c1-89{flex-basis:75%}}@media (min-width: 768px){.x .c1-8a{max-width:75%}}@media (min-width: 768px){.x .c1-8m{font-size:12px}}@media (min-width: 768px){.x .c1-ac{width:auto}}@media (min-width: 768px){.x .c1-bb{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bh{order:-1}}@media (min-width: 768px){.x .c1-cd{position:absolute}}@media (min-width: 768px){.x .c1-ce{transform:none}}@media (min-width: 768px){.x .c1-cf{max-width:600px}}@media (min-width: 768px){.x .c1-cg{margin-top:24px}}@media (min-width: 768px){.x .c1-ch{margin-bottom:24px}}@media (min-width: 768px){.x .c1-ci{margin-left:auto}}@media (min-width: 768px){.x .c1-cj{margin-right:auto}}@media (min-width: 768px){.x .c1-ck{display:flex}}@media (min-width: 768px){.x .c1-cl{align-items:center}}@media (min-width: 768px){.x .c1-cm{pointer-events:none}}@media (min-width: 768px){.x .c1-cn{justify-content:center}}@media (min-width: 768px){.x .c1-co:before{display:block}}@media (min-width: 768px){.x .c1-cp:before{height:90vh}}@media (min-width: 768px){.x .c1-cq:before{content:""}}@media (min-width: 768px){.x .c1-d7{pointer-events:auto}}@media (min-width: 768px){.x .c1-d8{border-radius:12px}}@media (min-width: 768px){.x .c1-d9{max-width:515px}}@media (min-width: 768px){.x .c1-dk{padding-left:0px}}@media (min-width: 768px){.x .c1-dl{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-6z{text-align:center}}@media (min-width: 1024px){.x .c1-70{margin-left:auto}}@media (min-width: 1024px){.x .c1-7k{font-size:38px}}@media (min-width: 1024px){.x .c1-8n{font-size:12px}}@media (min-width: 1024px){.x .c1-8r{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-8s{flex-direction:row}}@media (min-width: 1024px){.x .c1-8t{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-8u{min-height:0px}}@media (min-width: 1024px){.x .c1-8v:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-8w:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-8x:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-8y{flex-basis:50%}}@media (min-width: 1024px){.x .c1-8z{max-width:50%}}@media (min-width: 1024px){.x .c1-90{justify-content:center}}@media (min-width: 1024px){.x .c1-91 > *{max-width:70%}}@media (min-width: 1024px){.x .c1-92{margin-top:0}}@media (min-width: 1024px){.x .c1-93{margin-right:auto}}@media (min-width: 1024px){.x .c1-94{margin-bottom:0}}@media (min-width: 1024px){.x .c1-a2{position:static}}@media (min-width: 1024px){.x .c1-bi > *{max-width:100%}}@media (min-width: 1024px){.x .c1-bj > *{width:100%}}@media (min-width: 1024px){.x .c1-da{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7l{font-size:44px}}@media (min-width: 1280px){.x .c1-8o{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-7m{font-size:48px}}@media (min-width: 1536px){.x .c1-8p{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-183098" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-183099" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-183100"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.183103.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183099" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.183104.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-183099183102-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-183105" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183107.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183108.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183109" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183110.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183111.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183112.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183113.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183114.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183115.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.183116.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183117.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183118.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183119.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183120.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183121.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183122.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183123.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183124.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183125.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183126.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183127.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183128.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183129.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183130.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183131.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183132.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183133.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183134.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183135.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183136.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183137.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183138.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183139.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183140.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183141.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183142.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183143.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183144.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183105-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183145.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183146.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183147.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183148.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183149.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183150" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183151.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-183106" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-183106" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183152.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-183106" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183153.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-183106" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183154.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-183106" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183155.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-183106" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183156.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-183106" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183157.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-183106" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183158.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-183106" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183159.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-183106" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.183160.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-183106" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183161.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-183106" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183162.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-183106" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183163.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-183106" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183164.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-183106" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183165.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-183106" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183166.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-183106" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183167.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-183106" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183168.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-183106" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183169.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-183106" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183170.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-183106" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183171.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-183106" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183172.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-183106" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183173.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-183106" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183174.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-183106" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183175.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-183106" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183176.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-183106" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183177.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-183106" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183178.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-183106" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183179.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-183106" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183180.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-183106" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183181.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-183106" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183182.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-183106" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183183.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-183106" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183184.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-183106" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183185.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-183106" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183186.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-183106" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183187.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-183106" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183188.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-183106" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183189.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-183106" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183190.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-183106" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183191.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-183106" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183192.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-183106" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183193.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.183194.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183099" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="183195" aria-expanded="false" toggleId="n-183099-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.183196.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.183197.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-183099-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-183099-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-183099-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-183099-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183198.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183199.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="183200" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.183201.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183202.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183203.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183204.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183205.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183206.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.183207.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183208.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183209.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183210.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183211.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183212.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183213.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183214.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183215.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183216.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183217.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183218.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183219.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183220.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183221.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183222.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183223.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183224.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183225.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183226.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183227.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183228.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183229.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183230.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183231.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183232.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183233.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183234.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183235.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183236.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183237.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183238.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183239.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183240.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="4d69664e-f145-49d8-aca5-d55f663ac166" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="Widget" role="region" id="4d69664e-f145-49d8-aca5-d55f663ac166" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-6x c1-p c1-3f c1-1y c1-6y c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-6z c1-70 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-71 c1-34 c1-72 c1-73 c1-74">2660 De la Rennaissance, Laval, Québec, H7L 3W8</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-75 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-76 c1-77 c1-78 c1-79 c1-1z c1-7a c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Container" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-1y c1-7c c1-7d c1-7e c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7f c1-z c1-7g c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:auto"><div class="carousel-container-inner" style="width:100%;height:auto;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none;touch-action:auto"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li></ul></div></div></div></div></div></div></div></div></div></section> </div></div></div><div id="c170d160-33e2-4306-86f7-c416087a6907" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="c170d160-33e2-4306-86f7-c416087a6907" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-6x c1-p c1-3f c1-1y c1-6y c1-5y c1-15 c1-7h c1-7i c1-2z c1-7j c1-6z c1-70 c1-7k c1-7l c1-7m"><span data-ux="Element" class="x-el x-el-span c1-71 c1-34 c1-72 c1-73 c1-74">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-75 c1-15 c1-7h c1-7j c1-7k c1-7l c1-7m"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-7n c1-77 c1-78 c1-79 c1-1z c1-7a c1-14 c1-15 c1-7h c1-7j c1-7k c1-7l c1-7m"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-1y c1-7c c1-7d c1-7e c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7f c1-z c1-7g c1-b c1-c c1-7o c1-7p c1-7q c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_2660DELARE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-1y c1-7c c1-7r c1-7e c1-b c1-c c1-5d c1-5e c1-7s c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7f c1-1u c1-7g c1-b c1-c c1-5n c1-5o c1-7t c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">2660 DE LA RENNAISSANCE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-7v c1-7w c1-7x c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-81 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-82 c1-83 c1-7s c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-84 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-5d c1-87 c1-7s c1-88 c1-6o c1-6q c1-6r c1-6s">1300$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-1y c1-7c c1-1z c1-7e c1-b c1-c c1-5d c1-5e c1-7s c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7f c1-1u c1-7g c1-b c1-c c1-89 c1-8a c1-5n c1-5o c1-7t c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: 1er avril 2026</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-8g c1-7c c1-7d c1-7e c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-8h c1-8i c1-8j c1-1s c1-7f c1-z c1-7g c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-8k c1-8l c1-2z c1-8m c1-8n c1-8o c1-8p">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="84cf2b77-5b92-4731-bfb0-86ac47082e2c" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="84cf2b77-5b92-4731-bfb0-86ac47082e2c" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-8q c1-68 c1-b c1-c c1-d c1-8r c1-8s c1-8t c1-8u c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container183241" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-8v c1-8w c1-8x c1-d c1-8y c1-8z c1-90 c1-91 c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-92 c1-93 c1-94 c1-70 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-6y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7r c1-2u c1-95 c1-96 c1-97 c1-98 c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-9h c1-9i c1-9j c1-9k c1-9l c1-9m c1-9n c1-9o c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4t c1-8c">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7r c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">2660 Boulevard De La Renaissance, Laval, Quebec H7L 3W8, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7r c1-a1 c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Marie-Pier Daoust | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509375503" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183243.click,click">450-937-5503</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4384995463" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183244.click,click">438-499-5463</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183245.click,click">450-668-6166</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183246.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183247.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-a2 c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-79 c1-1i c1-a3 c1-a4 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a5 c1-25 c1-27 c1-a6 c1-a7 c1-a8 c1-a9 c1-b c1-4t c1-aa c1-c c1-ab c1-ac c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.183248.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ad c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded183242" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-ae c1-60 c1-af c1-h c1-i c1-ag c1-ah c1-ai c1-4 c1-3 c1-u c1-3b c1-aj c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-ak c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-7r c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7b c1-1y c1-7c c1-1z c1-7e c1-b c1-c c1-5d c1-5e c1-7s c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7f c1-1u c1-7g c1-b c1-c c1-5n c1-5o c1-7t c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183249" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-76 c1-4 c1-al c1-am c1-an c1-ao c1-4f c1-ap c1-aq c1-4d c1-4e c1-78 c1-b c1-ar c1-c c1-2z c1-as c1-at c1-au c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183249" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b3 c1-b4 c1-b5 c1-6t c1-b c1-ar c1-c c1-2z c1-b2 c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183250" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-76 c1-4 c1-al c1-am c1-an c1-ao c1-4f c1-ap c1-aq c1-4d c1-4e c1-78 c1-b c1-ar c1-c c1-2z c1-as c1-at c1-au c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183250" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b3 c1-b4 c1-b5 c1-6t c1-b c1-ar c1-c c1-2z c1-b2 c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183251" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-76 c1-4 c1-al c1-am c1-an c1-ao c1-4f c1-ap c1-aq c1-4d c1-4e c1-78 c1-b c1-ar c1-c c1-2z c1-as c1-at c1-au c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183251" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b3 c1-b4 c1-b5 c1-6t c1-b c1-ar c1-c c1-2z c1-b2 c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-76 c1-4 c1-al c1-am c1-an c1-ao c1-4f c1-37 c1-38 c1-4d c1-4e c1-78 c1-b6 c1-b c1-ar c1-c c1-2z c1-as c1-at c1-au c1-b1 c1-b2 c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-b7 c1-8l c1-2z c1-8m c1-8n c1-8o c1-8p">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8l c1-1p c1-1q c1-1r c1-8m c1-8n c1-8o c1-8p" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.183252.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8l c1-1p c1-1q c1-1r c1-8m c1-8n c1-8o c1-8p" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.183253.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-7b c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-a3 c1-a4 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a5 c1-25 c1-27 c1-a6 c1-a7 c1-a8 c1-a9 c1-b c1-4t c1-aa c1-c c1-ab c1-ac c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b8 c1-8f c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-b9 c1-ba c1-bb c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-79 c1-1i c1-a3 c1-a4 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a5 c1-25 c1-27 c1-a6 c1-a7 c1-a8 c1-a9 c1-b c1-4t c1-aa c1-c c1-ab c1-ac c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.183254.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bc c1-bd c1-be c1-bf c1-b c1-c c1-8v c1-8w c1-8x c1-bg c1-bh c1-d c1-8y c1-8z c1-90 c1-bi c1-bj c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-ae c1-60 c1-bk c1-bl c1-bm c1-bn c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-bo c1-bp c1-1n c1-1i c1-a3 c1-a4 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-bq c1-a7 c1-a8 c1-a9 c1-b c1-4t c1-aa c1-44 c1-ab c1-br c1-bs c1-bt c1-ac c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-bu c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-bv c1-bw c1-4h c1-bx c1-ae c1-by c1-bz c1-c0 c1-c1 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-c2 c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-7n c1-al c1-c3 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7r c1-2u c1-b c1-8k c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-71 c1-b c1-c4 c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8f c1-1f c1-1g c1-1h c1-1i c1-71 c1-b c1-c4 c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-79 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-c5 c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-c6 c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183257.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183258.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183259.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183260.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183261.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-c7 c1-c8 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183262.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7n c1-an c1-78 c1-1y c1-7r c1-7a c1-p c1-q c1-c9 c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-ca c1-2u c1-b c1-8k c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-c4 c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.183263.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget183264" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-ae c1-bl c1-bk c1-1j c1-1k c1-1l c1-1m c1-cb c1-4k c1-cc c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-cd c1-10 c1-ce c1-cf c1-cg c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-cd c1-10 c1-ce c1-cf c1-cg c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-d c1-co c1-cp c1-cq c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-cr c1-1u c1-cs c1-ct c1-cu c1-cv c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-cw c1-19 c1-c6 c1-cx c1-cy c1-cz c1-d0 c1-2i c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-10 c1-d7 c1-d8 c1-d9 c1-10 c1-d7 c1-d8 c1-d9 c1-d c1-da c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-bk c1-db c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget183264-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dc c1-4r c1-dd c1-1i c1-de c1-3 c1-df c1-dg c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dh c1-t c1-di c1-1v c1-1t c1-4k c1-4 c1-dj c1-cu c1-b c1-c c1-dk c1-dl c1-d8 c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-dm c1-dn c1-a5 c1-do c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7u c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8b c1-34 c1-4t c1-8c">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.183265.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget183264-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-a3 c1-a4 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a5 c1-25 c1-27 c1-a6 c1-a7 c1-a8 c1-a9 c1-b c1-4t c1-aa c1-c c1-ab c1-ac c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/e4974db2aecccceb/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/fae7f00517132030/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/69cfa9d11f6622adb5a8.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>140-150 Place Brosseau</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/140-150-place-brosseau"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{border-bottom-width:1px}.x .c1-91{margin-top:32px}.x .c1-92{flex-basis:83.33333333333334%}.x .c1-93{max-width:83.33333333333334%}.x .c1-94{margin-left:8.333333333333332%}.x .c1-95{color:rgb(82, 82, 82)}.x .c1-96{font-size:12px}.x .c1-9b{min-height:300px}.x .c1-9q > p > ol{text-align:left}.x .c1-9r > p > ol{display:block}.x .c1-9s > p > ol{padding-left:1.3em}.x .c1-9t > p > ol{margin-left:16px}.x .c1-9u > p > ol{margin-right:16px}.x .c1-9v > p > ol{margin-top:auto}.x .c1-9w > p > ol{margin-bottom:auto}.x .c1-9x > p > ol{text-wrap:pretty}.x .c1-9y > p > ul{text-align:left}.x .c1-9z > p > ul{display:block}.x .c1-a0 > p > ul{padding-left:1.3em}.x .c1-a1 > p > ul{margin-left:16px}.x .c1-a2 > p > ul{margin-right:16px}.x .c1-a3 > p > ul{margin-top:auto}.x .c1-a4 > p > ul{margin-bottom:auto}.x .c1-a5 > p > ul{text-wrap:pretty}.x .c1-a6 > ul{text-align:left}.x .c1-a7 > ul{display:block}.x .c1-a8 > ul{padding-left:1.3em}.x .c1-a9 > ul{margin-left:16px}.x .c1-aa > ul{margin-right:16px}.x .c1-ab > ul{margin-top:auto}.x .c1-ac > ul{margin-bottom:auto}.x .c1-ad > ul{text-wrap:pretty}.x .c1-ae > ol{text-align:left}.x .c1-af > ol{display:block}.x .c1-ag > ol{padding-left:1.3em}.x .c1-ah > ol{margin-left:16px}.x .c1-ai > ol{margin-right:16px}.x .c1-aj > ol{margin-top:auto}.x .c1-ak > ol{margin-bottom:auto}.x .c1-al > ol{text-wrap:pretty}.x .c1-am{white-space:pre-line}.x .c1-ao{border-style:none}.x .c1-ap{display:inline-flex}.x .c1-aq{padding-right:32px}.x .c1-ar{min-height:56px}.x .c1-as{border-radius:4px}.x .c1-at{color:rgb(0, 0, 0)}.x .c1-au{background-color:rgb(102, 168, 0)}.x .c1-av{text-shadow:none}.x .c1-aw:hover{background-color:rgb(121, 197, 0)}.x .c1-ay{height:inherit}.x .c1-az{z-index:2}.x .c1-b0{transform:translate3d(-120%,0,0)}.x .c1-b1{transition:transform .8s ease, opacity .1s}.x .c1-b2{align-items:flex-start}.x .c1-b3{max-width:600px}.x .c1-b4{border-top-width:1px}.x .c1-b5{border-right-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-97{font-size:12px}}@media (min-width: 768px){.x .c1-ax{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-98{font-size:12px}}@media (min-width: 1024px){.x .c1-9c{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9d{flex-direction:row}}@media (min-width: 1024px){.x .c1-9e{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9f{min-height:0px}}@media (min-width: 1024px){.x .c1-9g:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9h:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9i:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9j{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9k{max-width:50%}}@media (min-width: 1024px){.x .c1-9l{justify-content:center}}@media (min-width: 1024px){.x .c1-9m > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9n{margin-top:0}}@media (min-width: 1024px){.x .c1-9o{margin-right:auto}}@media (min-width: 1024px){.x .c1-9p{margin-bottom:0}}@media (min-width: 1024px){.x .c1-an{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-99{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-9a{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-190345" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-190346" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-190347"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190350.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190346" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190351.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-190346190349-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-190352" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190354.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190355.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190356" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190357.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190358.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190359.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190360.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190361.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190362.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190363.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190364.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190365.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190366.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190367.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190368.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190369.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190370.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190371.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190372.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190373.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190374.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190375.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190376.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190377.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190378.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190379.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190380.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190381.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190382.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190383.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190384.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.190385.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190386.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190387.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190388.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190389.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190390.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190391.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190352-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190392.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190393.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190394.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190395.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190396.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190397" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190398.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-190353" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-190353" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190399.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-190353" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190400.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-190353" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190401.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-190353" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190402.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-190353" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190403.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-190353" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190404.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-190353" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190405.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-190353" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190406.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-190353" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190407.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-190353" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190408.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-190353" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190409.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-190353" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190410.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-190353" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190411.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-190353" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190412.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-190353" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190413.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-190353" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190414.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-190353" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190415.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-190353" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190416.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-190353" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190417.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-190353" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190418.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-190353" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190419.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-190353" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190420.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-190353" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190421.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-190353" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190422.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-190353" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190423.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-190353" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190424.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-190353" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190425.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-190353" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190426.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-190353" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190427.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-190353" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190428.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-190353" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.190429.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-190353" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190430.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-190353" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190431.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-190353" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190432.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-190353" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190433.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-190353" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190434.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-190353" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190435.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-190353" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190436.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-190353" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190437.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-190353" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190438.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-190353" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190439.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-190353" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190440.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190441.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190346" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="190442" aria-expanded="false" toggleId="n-190346-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.190443.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190444.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-190346-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-190346-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-190346-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-190346-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190445.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190446.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="190447" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.190448.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190449.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190450.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190451.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190452.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190453.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190454.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190455.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190456.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190457.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190458.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190459.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190460.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190461.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190462.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190463.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190464.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190465.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190466.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190467.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190468.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190469.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190470.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190471.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190472.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190473.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190474.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190475.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.190476.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190477.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190478.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190479.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190480.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190481.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190482.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190483.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190484.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190485.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190486.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190487.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="b952a1f1-2e7d-4399-9c3f-c8f7499c3cfb" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="b952a1f1-2e7d-4399-9c3f-c8f7499c3cfb" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">140-150 Place Brosseau, Ste-Thérèse, Québec, J7E 4V3</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="dbb447e3-84ca-4be8-9f75-1e2462f75875" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="dbb447e3-84ca-4be8-9f75-1e2462f75875" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_140PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">140 PLACE BROSSEAU</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1250$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: 1er juillet 2026</span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_150PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">150 PLACE BROSSEAU</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1150$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: 1er juillet 2026</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-91 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-92 c1-93 c1-94 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-95 c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="9e18d795-f652-44d2-9a75-ff5defb0605e" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="9e18d795-f652-44d2-9a75-ff5defb0605e" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9b c1-68 c1-b c1-c c1-d c1-9c c1-9d c1-9e c1-9f c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container190488" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9g c1-9h c1-9i c1-d c1-9j c1-9k c1-9l c1-9m c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9n c1-9o c1-9p c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-al c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">140 Place Brosseau, Sainte-Thérèse, Quebec J7E 4V3, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-am c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Lise Duhamel | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147544661" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190490.click,click">514-754-4661</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147544661" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190491.click,click">514-754-4661</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4504359520" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190492.click,click">450-435-9520</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190493.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190494.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-an c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190495.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ay c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded190489" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-az c1-h c1-i c1-b0 c1-7e c1-b1 c1-4 c1-3 c1-u c1-3b c1-b2 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b3 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190496" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190496" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190497" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190497" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190498" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190498" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190499.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190500.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190501.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9g c1-9h c1-9i c1-by c1-bz c1-d c1-9j c1-9k c1-9l c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-as c1-at c1-au c1-b c1-4t c1-av c1-44 c1-aw c1-c8 c1-c9 c1-ca c1-ax c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b4 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190504.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190505.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190506.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190507.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190508.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190509.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.190510.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget190511" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget190511-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-aq c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.190512.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget190511-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/f1b903efe6e0353c/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/bd0f4cc560c118e8/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/6f408e37a7aaa5434924.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1305 François Paquin</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1305-fran%C3%A7ois-paquin"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{margin-top:32px}.x .c1-91{flex-basis:83.33333333333334%}.x .c1-92{max-width:83.33333333333334%}.x .c1-93{margin-left:8.333333333333332%}.x .c1-94{color:rgb(82, 82, 82)}.x .c1-95{font-size:12px}.x .c1-9a{min-height:300px}.x .c1-9p > p > ol{text-align:left}.x .c1-9q > p > ol{display:block}.x .c1-9r > p > ol{padding-left:1.3em}.x .c1-9s > p > ol{margin-left:16px}.x .c1-9t > p > ol{margin-right:16px}.x .c1-9u > p > ol{margin-top:auto}.x .c1-9v > p > ol{margin-bottom:auto}.x .c1-9w > p > ol{text-wrap:pretty}.x .c1-9x > p > ul{text-align:left}.x .c1-9y > p > ul{display:block}.x .c1-9z > p > ul{padding-left:1.3em}.x .c1-a0 > p > ul{margin-left:16px}.x .c1-a1 > p > ul{margin-right:16px}.x .c1-a2 > p > ul{margin-top:auto}.x .c1-a3 > p > ul{margin-bottom:auto}.x .c1-a4 > p > ul{text-wrap:pretty}.x .c1-a5 > ul{text-align:left}.x .c1-a6 > ul{display:block}.x .c1-a7 > ul{padding-left:1.3em}.x .c1-a8 > ul{margin-left:16px}.x .c1-a9 > ul{margin-right:16px}.x .c1-aa > ul{margin-top:auto}.x .c1-ab > ul{margin-bottom:auto}.x .c1-ac > ul{text-wrap:pretty}.x .c1-ad > ol{text-align:left}.x .c1-ae > ol{display:block}.x .c1-af > ol{padding-left:1.3em}.x .c1-ag > ol{margin-left:16px}.x .c1-ah > ol{margin-right:16px}.x .c1-ai > ol{margin-top:auto}.x .c1-aj > ol{margin-bottom:auto}.x .c1-ak > ol{text-wrap:pretty}.x .c1-al{white-space:pre-line}.x .c1-an{border-style:none}.x .c1-ao{display:inline-flex}.x .c1-ap{padding-right:32px}.x .c1-aq{min-height:56px}.x .c1-ar{border-radius:4px}.x .c1-as{color:rgb(0, 0, 0)}.x .c1-at{background-color:rgb(102, 168, 0)}.x .c1-au{text-shadow:none}.x .c1-av:hover{background-color:rgb(121, 197, 0)}.x .c1-ax{height:inherit}.x .c1-ay{z-index:2}.x .c1-az{transform:translate3d(-120%,0,0)}.x .c1-b0{transition:transform .8s ease, opacity .1s}.x .c1-b1{align-items:flex-start}.x .c1-b2{max-width:600px}.x .c1-b3{border-top-width:1px}.x .c1-b4{border-right-width:1px}.x .c1-b5{border-bottom-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-96{font-size:12px}}@media (min-width: 768px){.x .c1-aw{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-97{font-size:12px}}@media (min-width: 1024px){.x .c1-9b{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9c{flex-direction:row}}@media (min-width: 1024px){.x .c1-9d{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9e{min-height:0px}}@media (min-width: 1024px){.x .c1-9f:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9g:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9h:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9i{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9j{max-width:50%}}@media (min-width: 1024px){.x .c1-9k{justify-content:center}}@media (min-width: 1024px){.x .c1-9l > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9m{margin-top:0}}@media (min-width: 1024px){.x .c1-9n{margin-right:auto}}@media (min-width: 1024px){.x .c1-9o{margin-bottom:0}}@media (min-width: 1024px){.x .c1-am{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-98{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-99{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-183925" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-183926" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-183927"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.183930.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183926" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.183931.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-183926183929-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-183932" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183934.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183935.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183936" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183937.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183938.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183939.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183940.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183941.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183942.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183943.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183944.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183945.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183946.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183947.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183948.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183949.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183950.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183951.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183952.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.183953.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183954.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183955.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183956.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183957.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183958.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183959.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183960.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183961.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183962.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183963.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183964.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183965.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183966.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183967.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183968.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183969.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183970.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183971.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183932-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183972.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183973.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183974.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183975.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183976.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183977" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183978.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-183933" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-183933" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183979.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-183933" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183980.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-183933" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183981.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-183933" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183982.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-183933" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183983.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-183933" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183984.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-183933" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183985.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-183933" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183986.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-183933" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183987.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-183933" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183988.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-183933" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183989.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-183933" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183990.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-183933" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183991.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-183933" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183992.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-183933" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183993.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-183933" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183994.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-183933" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183995.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-183933" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183996.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-183933" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.183997.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-183933" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183998.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-183933" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183999.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-183933" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184000.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-183933" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184001.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-183933" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184002.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-183933" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184003.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-183933" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184004.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-183933" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184005.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-183933" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184006.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-183933" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184007.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-183933" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184008.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-183933" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184009.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-183933" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184010.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-183933" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184011.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-183933" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184012.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-183933" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184013.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-183933" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184014.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-183933" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184015.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-183933" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184016.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-183933" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184017.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-183933" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184018.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-183933" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184019.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-183933" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184020.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.184021.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183926" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="184022" aria-expanded="false" toggleId="n-183926-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.184023.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.184024.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-183926-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-183926-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-183926-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-183926-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184025.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184026.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="184027" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.184028.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184029.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184030.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184031.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184032.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184033.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184034.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184035.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184036.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184037.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184038.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184039.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184040.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184041.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184042.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184043.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.184044.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184045.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184046.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184047.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184048.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184049.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184050.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184051.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184052.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184053.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184054.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184055.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184056.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184057.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184058.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184059.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184060.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184061.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184062.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184063.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184064.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184065.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184066.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184067.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="9f4f0e24-4771-40e1-8047-c26e35dba891" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="9f4f0e24-4771-40e1-8047-c26e35dba891" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1305 François Paquin, Terrebonne, Québec, J6W 3M7</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="283fa188-bfa8-4082-95fe-4a192af8b9be" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="283fa188-bfa8-4082-95fe-4a192af8b9be" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_1305FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1305 FRANÇOIS PAQUIN</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">995$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span> Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-90 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-91 c1-92 c1-93 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-94 c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="25d40963-d266-4980-b790-b1fdd6c85858" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="25d40963-d266-4980-b790-b1fdd6c85858" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9a c1-68 c1-b c1-c c1-d c1-9b c1-9c c1-9d c1-9e c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container184068" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9f c1-9g c1-9h c1-d c1-9i c1-9j c1-9k c1-9l c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9m c1-9n c1-9o c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1305 Rue François-Paquin, Terrebonne, Quebec J6W 3M7, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-al c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">M Hicham Loutfy | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509646818" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184070.click,click">450-964-6818</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142070483" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184071.click,click">514-207-0483</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509649744" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184072.click,click">450-964-9744</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184073.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184074.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-am c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184075.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ax c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded184069" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-ay c1-h c1-i c1-az c1-7e c1-b0 c1-4 c1-3 c1-u c1-3b c1-b1 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b2 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184076" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184076" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184077" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184077" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184078" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184078" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184079.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184080.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184081.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9f c1-9g c1-9h c1-by c1-bz c1-d c1-9i c1-9j c1-9k c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-ar c1-as c1-at c1-b c1-4t c1-au c1-44 c1-av c1-c8 c1-c9 c1-ca c1-aw c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b3 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184084.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184085.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184086.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184087.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184088.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184089.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-b5 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.184090.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget184091" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget184091-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-ap c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.184092.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget184091-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/c5ff61474e6c024a/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/849d1bad0dfec9f5/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/8fc007e2225ba3535dae.html
+0 −655
@@ -1,655 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1602 2ème avenue</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1602-2%C3%A8me-avenue"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{margin-top:32px}.x .c1-91{flex-basis:83.33333333333334%}.x .c1-92{max-width:83.33333333333334%}.x .c1-93{margin-left:8.333333333333332%}.x .c1-94{color:rgb(82, 82, 82)}.x .c1-95{font-size:12px}.x .c1-9a{min-height:300px}.x .c1-9p > p > ol{text-align:left}.x .c1-9q > p > ol{display:block}.x .c1-9r > p > ol{padding-left:1.3em}.x .c1-9s > p > ol{margin-left:16px}.x .c1-9t > p > ol{margin-right:16px}.x .c1-9u > p > ol{margin-top:auto}.x .c1-9v > p > ol{margin-bottom:auto}.x .c1-9w > p > ol{text-wrap:pretty}.x .c1-9x > p > ul{text-align:left}.x .c1-9y > p > ul{display:block}.x .c1-9z > p > ul{padding-left:1.3em}.x .c1-a0 > p > ul{margin-left:16px}.x .c1-a1 > p > ul{margin-right:16px}.x .c1-a2 > p > ul{margin-top:auto}.x .c1-a3 > p > ul{margin-bottom:auto}.x .c1-a4 > p > ul{text-wrap:pretty}.x .c1-a5 > ul{text-align:left}.x .c1-a6 > ul{display:block}.x .c1-a7 > ul{padding-left:1.3em}.x .c1-a8 > ul{margin-left:16px}.x .c1-a9 > ul{margin-right:16px}.x .c1-aa > ul{margin-top:auto}.x .c1-ab > ul{margin-bottom:auto}.x .c1-ac > ul{text-wrap:pretty}.x .c1-ad > ol{text-align:left}.x .c1-ae > ol{display:block}.x .c1-af > ol{padding-left:1.3em}.x .c1-ag > ol{margin-left:16px}.x .c1-ah > ol{margin-right:16px}.x .c1-ai > ol{margin-top:auto}.x .c1-aj > ol{margin-bottom:auto}.x .c1-ak > ol{text-wrap:pretty}.x .c1-al{white-space:pre-line}.x .c1-an{border-style:none}.x .c1-ao{display:inline-flex}.x .c1-ap{padding-right:32px}.x .c1-aq{min-height:56px}.x .c1-ar{border-radius:4px}.x .c1-as{color:rgb(0, 0, 0)}.x .c1-at{background-color:rgb(102, 168, 0)}.x .c1-au{text-shadow:none}.x .c1-av:hover{background-color:rgb(121, 197, 0)}.x .c1-ax{height:inherit}.x .c1-ay{z-index:2}.x .c1-az{transform:translate3d(-120%,0,0)}.x .c1-b0{transition:transform .8s ease, opacity .1s}.x .c1-b1{align-items:flex-start}.x .c1-b2{max-width:600px}.x .c1-b3{border-top-width:1px}.x .c1-b4{border-right-width:1px}.x .c1-b5{border-bottom-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-96{font-size:12px}}@media (min-width: 768px){.x .c1-aw{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-97{font-size:12px}}@media (min-width: 1024px){.x .c1-9b{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9c{flex-direction:row}}@media (min-width: 1024px){.x .c1-9d{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9e{min-height:0px}}@media (min-width: 1024px){.x .c1-9f:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9g:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9h:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9i{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9j{max-width:50%}}@media (min-width: 1024px){.x .c1-9k{justify-content:center}}@media (min-width: 1024px){.x .c1-9l > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9m{margin-top:0}}@media (min-width: 1024px){.x .c1-9n{margin-right:auto}}@media (min-width: 1024px){.x .c1-9o{margin-bottom:0}}@media (min-width: 1024px){.x .c1-am{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-98{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-99{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-190008" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-190009" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-190010"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190013.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190009" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190014.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-190009190012-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-190015" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190017.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190018.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190019" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190020.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190021.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190022.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190023.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190024.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190025.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190026.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190027.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190028.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190029.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190030.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190031.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190032.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190033.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190034.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190035.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190036.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190037.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190038.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190039.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190040.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190041.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190042.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190043.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190044.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190045.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190046.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190047.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190048.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190049.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190050.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190051.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190052.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.190053.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190054.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190015-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190055.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190056.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190057.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190058.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190059.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190060" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190061.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-190016" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-190016" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190062.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-190016" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190063.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-190016" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190064.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-190016" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190065.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-190016" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190066.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-190016" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190067.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-190016" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190068.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-190016" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190069.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-190016" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190070.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-190016" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190071.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-190016" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190072.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-190016" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190073.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-190016" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190074.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-190016" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190075.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-190016" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190076.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-190016" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190077.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-190016" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190078.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-190016" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190079.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-190016" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190080.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-190016" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190081.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-190016" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190082.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-190016" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190083.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-190016" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190084.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-190016" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190085.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-190016" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190086.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-190016" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190087.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-190016" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190088.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-190016" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190089.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-190016" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190090.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-190016" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190091.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-190016" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190092.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-190016" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190093.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-190016" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190094.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-190016" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190095.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-190016" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190096.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-190016" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.190097.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-190016" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190098.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-190016" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190099.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-190016" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190100.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-190016" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190101.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-190016" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190102.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-190016" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190103.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190104.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190009" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="190105" aria-expanded="false" toggleId="n-190009-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.190106.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190107.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-190009-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-190009-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-190009-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-190009-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190108.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190109.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="190110" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.190111.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190112.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190113.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190114.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190115.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190116.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190117.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190118.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190119.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190120.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190121.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190122.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190123.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190124.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190125.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190126.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190127.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190128.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190129.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190130.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190131.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190132.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190133.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190134.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190135.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190136.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190137.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190138.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190139.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190140.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190141.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190142.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190143.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.190144.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190145.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190146.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190147.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190148.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190149.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190150.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="f1172e90-59fd-4c3e-a8df-04979a510bec" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="f1172e90-59fd-4c3e-a8df-04979a510bec" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1602 2ÈME AVENUE, SHAWINIGAN, QUÉBEC, G9T 6G9</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="3" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="4" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="f5be62bd-355b-4b98-bad4-6c62aa5df4ec" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="f5be62bd-355b-4b98-bad4-6c62aa5df4ec" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Menu / Price List</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_16022MEAVE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1602 2ÈME AVENUE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">775$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Disponibilité: 1 juillet 2026</strong></span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-90 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-91 c1-92 c1-93 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-94 c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="0412b4d7-39cb-45cc-ab3b-b2689043d436" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="0412b4d7-39cb-45cc-ab3b-b2689043d436" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9a c1-68 c1-b c1-c c1-d c1-9b c1-9c c1-9d c1-9e c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container190151" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9f c1-9g c1-9h c1-d c1-9i c1-9j c1-9k c1-9l c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9m c1-9n c1-9o c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Intercom (Inclus)</li> | |
| 631 | − <li>Eau chaude (Inclus)</li> | |
| 632 | − <li>Stationnement extérieur (Inclus)</li> | |
| 633 | − <li>Électricité (inclus) (Inclus)</li> | |
| 634 | − <li>Chauffage (Inclus)</li> | |
| 635 | − <li>Piscine extérieur</li> | |
| 636 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1602 2eme Avenue, Shawinigan, G9T 6G9</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-al c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Carole Lavergne | |
| 637 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195335149" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190153.click,click">819-533-5149</a> | |
| 638 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195310254" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190154.click,click">819-531-0254</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195337099" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190155.click,click">819-533-7099</a> | |
| 640 | − | |
| 641 | −Bureau | |
| 642 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190156.click,click">450-668-6146</a> | |
| 643 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190157.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-am c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190158.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ax c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded190152" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-ay c1-h c1-i c1-az c1-7e c1-b0 c1-4 c1-3 c1-u c1-3b c1-b1 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b2 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190159" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190159" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190160" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190160" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190161" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190161" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190162.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190163.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190164.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9f c1-9g c1-9h c1-by c1-bz c1-d c1-9i c1-9j c1-9k c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-ar c1-as c1-at c1-b c1-4t c1-au c1-44 c1-av c1-c8 c1-c9 c1-ca c1-aw c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b3 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190167.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190168.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190169.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190170.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190171.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190172.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-b5 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.190173.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget190174" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget190174-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-ap c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.190175.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget190174-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 644 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/172dec2c7aabc4cb/script.js" crossorigin></script> | |
| 645 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 646 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/855142533ab233bf/script.js" crossorigin></script> | |
| 647 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 648 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 649 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 650 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 651 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 652 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 653 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 654 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 655 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
added
tests/fixtures/groupe_theoret/9aae693fe1883df226b6.html
+35 −0
@@ -0,0 +1,35 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="en"> | |
| 3 | + <head> | |
| 4 | + <meta charset="UTF-8" /> | |
| 5 | + <script> | |
| 6 | + (function () { | |
| 7 | + try { | |
| 8 | + var u = new URL(location.href); | |
| 9 | + if (u.searchParams.has('airoShareToken')) { | |
| 10 | + u.searchParams.delete('airoShareToken'); | |
| 11 | + history.replaceState(null, '', u.toString()); | |
| 12 | + } | |
| 13 | + } catch (e) {} | |
| 14 | + })(); | |
| 15 | + </script> | |
| 16 | + <meta name="referrer" content="same-origin" /> | |
| 17 | + <link rel="icon" href="/favicon.ico" /> | |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| 19 | + <link rel="canonical" href="https://locationappartement.ca/appartements-a-louer"><title data-rh="true">Appartements à louer au Québec — Montréal, Laval, Terrebonne | Groupe Théorêt</title> | |
| 20 | +<meta data-rh="true" name="description" content="Appartements à louer chez Groupe Théorêt : Montréal, Laval, Terrebonne, Ste-Thérèse, Charlemagne et Shawinigan. Consultez les unités disponibles et les loyers."/><meta data-rh="true" property="og:title" content="Appartements à louer — Groupe Théorêt"/><meta data-rh="true" property="og:description" content="Appartements disponibles à Montréal, Laval, Terrebonne, Ste-Thérèse, Charlemagne et Shawinigan. Entreprise familiale depuis 1955."/><meta data-rh="true" property="og:url" content="https://locationappartement.ca/appartements-a-louer"/><meta data-rh="true" property="og:type" content="website"/><meta data-rh="true" property="og:image" content="https://locationappartement.ca/airo-assets/images/pages/og-default"/><meta data-rh="true" property="og:image:width" content="1200"/><meta data-rh="true" property="og:image:height" content="630"/><meta data-rh="true" name="twitter:card" content="summary_large_image"/><meta data-rh="true" name="twitter:image" content="https://locationappartement.ca/airo-assets/images/pages/og-default"/> | |
| 21 | +<link data-rh="true" rel="canonical" href="https://locationappartement.ca/appartements-a-louer"/> | |
| 22 | +<script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"WebPage","@id":"https://locationappartement.ca/appartements-a-louer#webpage","url":"https://locationappartement.ca/appartements-a-louer","name":"Appartements à louer au Québec — Montréal, Laval, Terrebonne | Groupe Théorêt","description":"Appartements à louer chez Groupe Théorêt : Montréal, Laval, Terrebonne, Ste-Thérèse, Charlemagne et Shawinigan.","isPartOf":{"@id":"https://locationappartement.ca/#website"},"about":{"@id":"https://locationappartement.ca/#organization"},"inLanguage":"fr-CA"}</script> | |
| 23 | + <script src="/airo-video-slots.js"></script> | |
| 24 | + <script src="/airo-logo-orientation.js"></script> | |
| 25 | + <script type="module" crossorigin src="/assets/index-DRaDsBbm.js"></script> | |
| 26 | + <link rel="modulepreload" crossorigin href="/assets/query-DYVpeFO3.js"> | |
| 27 | + <link rel="modulepreload" crossorigin href="/assets/react-vendor-DYU0Rr6N.js"> | |
| 28 | + <link rel="modulepreload" crossorigin href="/assets/radix-ui-BrXWnT8S.js"> | |
| 29 | + <link rel="stylesheet" crossorigin href="/assets/index-CUKF5pqa.css"> | |
| 30 | + </head> | |
| 31 | + <body class="fs-unmask-airo-app-builder"> | |
| 32 | + <div id="app" class="fs-unmask-airo-app-builder"><link rel="preload" as="image" href="/airo-assets/images/logo/horizontal"/><!--$--><div class="min-h-screen bg-background flex flex-col"><header class="sticky top-0 z-50 bg-white border-b border-border shadow-sm"><div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"><div class="flex items-center justify-between h-16 md:h-20"><a class="shrink-0" href="/" data-discover="true"><img src="/airo-assets/images/logo/horizontal" alt="Groupe Théorêt — Gestion Immobilière" class="block h-auto max-h-12 md:max-h-14 w-auto max-w-[200px] object-contain"/></a><nav class="hidden lg:flex items-center gap-1" aria-label="Navigation principale"><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground" href="/" data-discover="true">Accueil</a><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-primary" href="/appartements-a-louer" data-discover="true">Appartements à louer</a><div class="relative"><button class="flex items-center gap-1 px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground">Propriétés<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down h-4 w-4 transition-transform duration-200"><path d="m6 9 6 6 6-6"></path></svg></button></div><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground" href="/formulaires" data-discover="true">Formulaires</a><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground" href="/questions-et-reponses" data-discover="true">Questions et Réponses</a><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground" href="/nous-joindre" data-discover="true">Nous joindre</a><a class="px-3 py-2 text-sm font-medium transition-colors duration-150 rounded-md hover:text-primary text-foreground" href="/emplois" data-discover="true">Emplois</a><a href="tel:4506686146" class="ml-4 flex items-center gap-2 bg-accent text-accent-foreground px-4 py-2 rounded-md text-sm font-semibold hover:bg-accent/90 transition-colors duration-150"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone h-4 w-4"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>(450) 668-6146</a></nav><div class="flex lg:hidden items-center gap-3"><a href="tel:4506686146" class="flex items-center gap-1.5 bg-accent text-accent-foreground px-3 py-1.5 rounded-md text-sm font-semibold"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone h-4 w-4"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg><span class="hidden sm:inline">(450) 668-6146</span></a><button class="p-2 rounded-md text-foreground hover:bg-muted transition-colors" aria-label="Ouvrir le menu"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-menu h-6 w-6"><line x1="4" x2="20" y1="12" y2="12"></line><line x1="4" x2="20" y1="6" y2="6"></line><line x1="4" x2="20" y1="18" y2="18"></line></svg></button></div></div></div></header><main><section class="bg-primary py-14 lg:py-20"><div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 text-center"><div style="opacity:0;transform:translateY(20px)"><h1 class="text-3xl md:text-4xl lg:text-5xl font-bold text-white mb-3" style="white-space:pre-line;font-family:var(--font-heading)">Appartements à louer</h1><p class="text-white/70 text-lg">25<!-- --> unité<!-- -->s<!-- --> disponible<!-- -->s<!-- --> dans <!-- -->6<!-- --> ville<!-- -->s</p></div></div></section><section class="py-12 lg:py-20 bg-background"><div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8"><div class="mb-8 flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4 bg-accent/10 border border-accent/30 rounded-xl px-5 py-4" style="opacity:0;transform:translateY(10px)"><p class="text-sm text-foreground leading-relaxed"><span class="font-semibold" style="white-space:pre-line">Intéressé par un appartement?</span> <!-- -->Contactez-nous pour planifier une visite ou obtenir plus d'informations.</p><a href="/nous-joindre" class="shrink-0 flex items-center gap-2 bg-accent text-accent-foreground px-5 py-2.5 rounded-md font-bold text-sm hover:bg-accent/90 transition-colors duration-150 whitespace-nowrap"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-pen h-4 w-4"><path d="M11.5 15H7a4 4 0 0 0-4 4v2"></path><path d="M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><circle cx="10" cy="7" r="4"></circle></svg>Nous joindre</a></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Montréal</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresse</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/5080-pie-ix-montreal" data-discover="true">5080 Pie-IX</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">3 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 280 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/5080-pie-ix-montreal" data-discover="true">Voir →</a></td></tr></tbody></table></div></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Charlemagne</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresse</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">15 Place Yvon Plourde</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-badge-check h-4 w-4 text-accent shrink-0" aria-label="Rénové"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg>3 1/2 (rénové)</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 175 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">15 Place Yvon Plourde</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 375 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">15 Place Yvon Plourde</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 175 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">15 Place Yvon Plourde</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 175 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er octobre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/15-place-yvon-plourde-charlemagne" data-discover="true">Voir →</a></td></tr></tbody></table></div></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Laval</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresses</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/2660-de-la-renaissance-laval" data-discover="true">2660 de la Renaissance</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 250 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/2660-de-la-renaissance-laval" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/3260-boul-saint-martin-est-laval" data-discover="true">3260 Boul Saint-Martin Est</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 335 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/3260-boul-saint-martin-est-laval" data-discover="true">Voir →</a></td></tr></tbody></table></div></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Terrebonne</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresses</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1064-mckenzie-terrebonne" data-discover="true">1064 McKenzie</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 295 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er octobre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1064-mckenzie-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1076-mckenzie-terrebonne" data-discover="true">1076 McKenzie</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 200 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er octobre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1076-mckenzie-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1090-mckenzie-terrebonne" data-discover="true">1090 McKenzie</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-badge-check h-4 w-4 text-accent shrink-0" aria-label="Rénové"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg>3 1/2 (rénové)</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">995 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er décembre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1090-mckenzie-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1108-mckenzie-terrebonne" data-discover="true">1108 McKenzie</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">3 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">995 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1108-mckenzie-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1285-rue-francois-paquin-terrebonne" data-discover="true">1285 Rue François-Paquin</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">3 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 150 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er octobre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1285-rue-francois-paquin-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1305-francois-paquin-terrebonne" data-discover="true">1305 François Paquin</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">3 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 000 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1305-francois-paquin-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1415-francois-paquin-terrebonne" data-discover="true">1415 François Paquin</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-badge-check h-4 w-4 text-accent shrink-0" aria-label="Rénové"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg>3 1/2 (rénové)</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 000 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1415-francois-paquin-terrebonne" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1415-francois-paquin-terrebonne" data-discover="true">1415 François Paquin</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-badge-check h-4 w-4 text-accent shrink-0" aria-label="Rénové"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg>3 1/2 (rénové)</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 025 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1415-francois-paquin-terrebonne" data-discover="true">Voir →</a></td></tr></tbody></table></div></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Ste-Thérèse</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresses</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/110-place-brosseau-ste-therese" data-discover="true">110 Place Brosseau</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 300 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er décembre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/110-place-brosseau-ste-therese" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/120-place-brosseau-ste-therese" data-discover="true">120 Place Brosseau</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">5 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 560 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/120-place-brosseau-ste-therese" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/140-place-brosseau-ste-therese" data-discover="true">140 Place Brosseau</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 250 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er octobre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/140-place-brosseau-ste-therese" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/150-place-brosseau-ste-therese" data-discover="true">150 Place Brosseau</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">1 250 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/150-place-brosseau-ste-therese" data-discover="true">Voir →</a></td></tr></tbody></table></div></div><div class="mb-10" style="opacity:0;transform:translateY(16px)"><div class="flex items-center gap-2 mb-3"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin h-4 w-4 text-accent shrink-0"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><h2 class="text-lg font-bold text-foreground" style="font-family:var(--font-heading)">Shawinigan</h2><div class="flex-1 h-px bg-border"></div></div><div class="overflow-x-auto rounded-xl border border-border shadow-sm"><table class="w-full text-sm"><thead><tr class="bg-primary text-white"><th class="text-left px-4 py-3 font-semibold">Adresses</th><th class="text-left px-4 py-3 font-semibold">Taille</th><th class="text-left px-4 py-3 font-semibold">Loyer / mois</th><th class="text-left px-4 py-3 font-semibold">Disponibilité</th><th class="px-4 py-3"></th></tr></thead><tbody><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/299-16e-rue-shawinigan" data-discover="true">299 16e Rue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">5 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">975 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er décembre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/299-16e-rue-shawinigan" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/299-16e-rue-shawinigan" data-discover="true">299 16e Rue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">875 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/299-16e-rue-shawinigan" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1600-2eme-avenue-shawinigan" data-discover="true">1600 2ème Avenue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">5 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">975 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap">1er décembre 2026</td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1600-2eme-avenue-shawinigan" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1602-2eme-avenue-shawinigan" data-discover="true">1602 2ème Avenue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">5 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">975 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1602-2eme-avenue-shawinigan" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-card"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1603-2eme-avenue-shawinigan" data-discover="true">1603 2ème Avenue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">5 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">975 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1603-2eme-avenue-shawinigan" data-discover="true">Voir →</a></td></tr><tr class="border-t border-border transition-colors hover:bg-accent/5 bg-muted/30"><td class="px-4 py-3.5"><a class="font-medium text-foreground hover:text-primary hover:underline transition-colors" href="/proprietes/1611-3eme-avenue-shawinigan" data-discover="true">1611 3ème Avenue</a></td><td class="px-4 py-3.5"><span class="flex items-center gap-1.5 font-medium text-foreground whitespace-nowrap">4 1/2</span></td><td class="px-4 py-3.5 font-bold text-accent whitespace-nowrap">875 $</td><td class="px-4 py-3.5 text-muted-foreground whitespace-nowrap"><span class="inline-flex items-center gap-1 text-accent font-semibold"><span class="w-2 h-2 rounded-full bg-accent inline-block"></span><span>Dès maintenant</span></span></td><td class="px-4 py-3.5 text-right"><a class="text-xs font-semibold text-primary hover:underline whitespace-nowrap" href="/proprietes/1611-3eme-avenue-shawinigan" data-discover="true">Voir →</a></td></tr></tbody></table></div></div></div></section></main><footer class="bg-white text-foreground border-t border-border"><div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 lg:py-16"><div class="grid grid-cols-1 md:grid-cols-3 gap-10"><div><img src="/airo-assets/images/logo/horizontal" alt="Groupe Théorêt" class="block h-auto max-h-14 w-auto max-w-[180px] object-contain mb-4"/><p class="text-sm text-muted-foreground leading-relaxed">Gestion Immobilière depuis 1955</p></div><div><h3 class="text-sm font-semibold uppercase tracking-wider text-muted-foreground mb-4" style="font-family:var(--font-heading)">Navigation</h3><ul class="flex flex-col gap-2"><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/" data-discover="true">Accueil</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/appartements-a-louer" data-discover="true">Appartements à louer</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/formulaires" data-discover="true">Formulaires</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/questions-et-reponses" data-discover="true">Questions et Réponses</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/nous-joindre" data-discover="true">Nous joindre</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/emplois" data-discover="true">Emplois</a></li><li><a class="text-sm text-foreground/70 hover:text-foreground transition-colors duration-150" href="/politique-de-confidentialite" data-discover="true">Politique de confidentialité</a></li></ul></div><div><h3 class="text-sm font-semibold uppercase tracking-wider text-muted-foreground mb-4" style="font-family:var(--font-heading)">Nous joindre</h3><a href="tel:4506686146" class="flex items-center gap-2 text-sm text-foreground/70 hover:text-foreground transition-colors duration-150"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone h-4 w-4 text-accent shrink-0"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>(450) 668-6146</a></div></div></div><div class="border-t border-border"><div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4"><p class="text-xs text-muted-foreground text-center">© 2026 Gestion Immobilière Groupe Théorêt — Tous droit réservés</p></div></div></footer></div><!--/$--><script>window.__staticRouterHydrationData = JSON.parse("{\"loaderData\":{\"0-1\":{\"properties\":[{\"id\":14,\"name\":\"15 Place Yvon Plourde\",\"address\":\"15 Place Yvon Plourde\",\"city\":\"Charlemagne\",\"description\":\"Immeuble résidentiel à Charlemagne, J5Z 3E1.\",\"postalCode\":\"J5Z 1V3\",\"imageSlot\":\"properties/default\",\"slug\":\"15-place-yvon-plourde-charlemagne\",\"displayOrder\":14,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":124,\"propertyId\":14,\"size\":\"3 1/2 (rénové)\",\"monthlyRent\":\"1175.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"},{\"id\":125,\"propertyId\":14,\"size\":\"4 1/2\",\"monthlyRent\":\"1375.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"},{\"id\":126,\"propertyId\":14,\"size\":\"4 1/2\",\"monthlyRent\":\"1175.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"},{\"id\":127,\"propertyId\":14,\"size\":\"4 1/2\",\"monthlyRent\":\"1175.00\",\"availabilityDate\":\"2026-10-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":7,\"propertyId\":14,\"name\":\"Chauffage au gaz naturel\",\"included\":true,\"detail\":null},{\"id\":8,\"propertyId\":14,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":9,\"propertyId\":14,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":10,\"propertyId\":14,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":11,\"propertyId\":14,\"name\":\"Stationnement intérieur\",\"included\":false,\"detail\":\"en sus $\"}],\"photos\":[{\"id\":4,\"propertyId\":14,\"slotKey\":\"properties/15-place-yvon-plourde-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":5,\"propertyId\":14,\"slotKey\":\"properties/15-place-yvon-plourde-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":3,\"propertyId\":14,\"contactName\":\"Jonathan Mondor\",\"phone\":\"450-657-2394\",\"mobile\":\"514-464-5298\",\"fax\":\"450-657-6177\"}},{\"id\":15,\"name\":\"2660 de la Renaissance\",\"address\":\"2660 Bd de la Renaissance\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7L 3W8.\",\"postalCode\":\"H7L 3W8\",\"imageSlot\":\"properties/default\",\"slug\":\"2660-de-la-renaissance-laval\",\"displayOrder\":15,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":128,\"propertyId\":15,\"size\":\"4 1/2\",\"monthlyRent\":\"1250.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":12,\"propertyId\":15,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":13,\"propertyId\":15,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":6,\"propertyId\":15,\"slotKey\":\"properties/2660-renaissance-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":4,\"propertyId\":15,\"contactName\":\"Marie-Pier Daoust\",\"phone\":\"450-937-5503\",\"mobile\":\"438-499-5463\",\"fax\":\"450-668-6166\"}},{\"id\":16,\"name\":\"590 Rue Lartigue\",\"address\":\"590 Rue Lartigue\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7N 3T9.\",\"postalCode\":\"H7G 2T5\",\"imageSlot\":\"properties/default\",\"slug\":\"590-rue-lartigue-laval\",\"displayOrder\":16,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":14,\"propertyId\":16,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":15,\"propertyId\":16,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":7,\"propertyId\":16,\"slotKey\":\"properties/590-lartigue-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":5,\"propertyId\":16,\"contactName\":\"Guy Lavoie\",\"phone\":\"450-667-5084\",\"mobile\":null,\"fax\":\"450-668-6166\"}},{\"id\":17,\"name\":\"596 Rue Lartigue\",\"address\":\"596 Rue Lartigue\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7N 3T9.\",\"postalCode\":\"H7G 2T5\",\"imageSlot\":\"properties/default\",\"slug\":\"596-rue-lartigue-laval\",\"displayOrder\":17,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":16,\"propertyId\":17,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":17,\"propertyId\":17,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":8,\"propertyId\":17,\"slotKey\":\"properties/596-lartigue-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":6,\"propertyId\":17,\"contactName\":\"Guy Lavoie\",\"phone\":\"450-667-5084\",\"mobile\":null,\"fax\":\"450-668-6166\"}},{\"id\":18,\"name\":\"401 Rue Lulli\",\"address\":\"401 Rue Lulli\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7N 1B6.\",\"postalCode\":\"H7G 2R8\",\"imageSlot\":\"properties/default\",\"slug\":\"401-rue-lulli-laval\",\"displayOrder\":18,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":18,\"propertyId\":18,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":19,\"propertyId\":18,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":9,\"propertyId\":18,\"slotKey\":\"properties/401-lulli-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":10,\"propertyId\":18,\"slotKey\":\"properties/401-lulli-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":7,\"propertyId\":18,\"contactName\":\"Guy Lavoie\",\"phone\":\"450-667-5084\",\"mobile\":null,\"fax\":\"450-668-6166\"}},{\"id\":19,\"name\":\"3515 Rue Rivard\",\"address\":\"3515 Rue Rivard\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7E 4W9.\",\"postalCode\":\"H7G 4S5\",\"imageSlot\":\"properties/default\",\"slug\":\"3515-rue-rivard-laval\",\"displayOrder\":19,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":20,\"propertyId\":19,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":21,\"propertyId\":19,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":11,\"propertyId\":19,\"slotKey\":\"properties/3515-rivard-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":8,\"propertyId\":19,\"contactName\":null,\"phone\":null,\"mobile\":\"514-942-1342\",\"fax\":\"450-668-6166\"}},{\"id\":20,\"name\":\"3260 Boul Saint-Martin Est\",\"address\":\"3260 Boul Saint-Martin Est\",\"city\":\"Laval\",\"description\":\"Immeuble résidentiel à Laval, H7E 4X7.\",\"postalCode\":\"H7K 3G5\",\"imageSlot\":\"properties/default\",\"slug\":\"3260-boul-saint-martin-est-laval\",\"displayOrder\":20,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":129,\"propertyId\":20,\"size\":\"4 1/2\",\"monthlyRent\":\"1335.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":22,\"propertyId\":20,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":23,\"propertyId\":20,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":24,\"propertyId\":20,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":12,\"propertyId\":20,\"slotKey\":\"properties/3260-st-martin-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":13,\"propertyId\":20,\"slotKey\":\"properties/3260-st-martin-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":14,\"propertyId\":20,\"slotKey\":\"properties/3260-st-martin-3\",\"caption\":null,\"sortOrder\":3,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":9,\"propertyId\":20,\"contactName\":null,\"phone\":null,\"mobile\":\"514-942-1342\",\"fax\":\"450-668-6166\"}},{\"id\":12,\"name\":\"5080 Pie-IX\",\"address\":\"5080 Pie-IX\",\"city\":\"Montréal\",\"description\":\"Immeuble résidentiel situé sur le boulevard Pie-IX à Montréal, H1X 2B6.\",\"postalCode\":\"H1T 3B4\",\"imageSlot\":\"properties/default\",\"slug\":\"5080-pie-ix-montreal\",\"displayOrder\":12,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":123,\"propertyId\":12,\"size\":\"3 1/2\",\"monthlyRent\":\"1280.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":1,\"propertyId\":12,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":2,\"propertyId\":12,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":3,\"propertyId\":12,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":1,\"propertyId\":12,\"slotKey\":\"properties/5080-pie-ix-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":1,\"propertyId\":12,\"contactName\":\"Jean Chagnon\",\"phone\":\"514-727-4108\",\"mobile\":\"514-237-2678\",\"fax\":\"514-727-4108\"}},{\"id\":13,\"name\":\"5100 Pie-IX\",\"address\":\"5100 Pie-IX\",\"city\":\"Montréal\",\"description\":\"Immeuble résidentiel situé sur le boulevard Pie-IX à Montréal, H1X 2B6.\",\"postalCode\":\"H1T 3B4\",\"imageSlot\":\"properties/default\",\"slug\":\"5100-pie-ix-montreal\",\"displayOrder\":13,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":4,\"propertyId\":13,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":5,\"propertyId\":13,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":6,\"propertyId\":13,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":2,\"propertyId\":13,\"slotKey\":\"properties/5100-pie-ix-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":3,\"propertyId\":13,\"slotKey\":\"properties/5100-pie-ix-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":2,\"propertyId\":13,\"contactName\":\"Jean Chagnon\",\"phone\":\"514-727-4108\",\"mobile\":\"514-237-2678\",\"fax\":\"514-727-4108\"}},{\"id\":46,\"name\":\"299 16e Rue\",\"address\":\"299 16e Rue\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 6G9\",\"imageSlot\":\"properties/default\",\"slug\":\"299-16e-rue-shawinigan\",\"displayOrder\":46,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":142,\"propertyId\":46,\"size\":\"5 1/2\",\"monthlyRent\":\"975.00\",\"availabilityDate\":\"2026-12-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"},{\"id\":146,\"propertyId\":46,\"size\":\"4 1/2\",\"monthlyRent\":\"875.00\",\"availabilityDate\":\"2026-01-01T00:00:00.000Z\",\"createdAt\":\"2026-09-09T18:18:18.000Z\"}],\"services\":[{\"id\":85,\"propertyId\":46,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":86,\"propertyId\":46,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":87,\"propertyId\":46,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":88,\"propertyId\":46,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":38,\"propertyId\":46,\"slotKey\":\"properties/299-16e-rue-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":39,\"propertyId\":46,\"slotKey\":\"properties/299-16e-rue-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":40,\"propertyId\":46,\"slotKey\":\"properties/299-16e-rue-3\",\"caption\":null,\"sortOrder\":3,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":35,\"propertyId\":46,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":47,\"name\":\"1600 2ème Avenue\",\"address\":\"1600 2ème Avenue\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 5B1\",\"imageSlot\":\"properties/default\",\"slug\":\"1600-2eme-avenue-shawinigan\",\"displayOrder\":47,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":143,\"propertyId\":47,\"size\":\"5 1/2\",\"monthlyRent\":\"975.00\",\"availabilityDate\":\"2026-12-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":89,\"propertyId\":47,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":90,\"propertyId\":47,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":91,\"propertyId\":47,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":92,\"propertyId\":47,\"name\":\"Électricité\",\"included\":true,\"detail\":null},{\"id\":93,\"propertyId\":47,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":94,\"propertyId\":47,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":41,\"propertyId\":47,\"slotKey\":\"properties/1600-2e-av-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":42,\"propertyId\":47,\"slotKey\":\"properties/1600-2e-av-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":43,\"propertyId\":47,\"slotKey\":\"properties/1600-2e-av-3\",\"caption\":null,\"sortOrder\":3,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":36,\"propertyId\":47,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":48,\"name\":\"1601 2ème Avenue\",\"address\":\"1601 2ème Avenue\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 5B1\",\"imageSlot\":\"properties/default\",\"slug\":\"1601-2eme-avenue-shawinigan\",\"displayOrder\":48,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":95,\"propertyId\":48,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":96,\"propertyId\":48,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":97,\"propertyId\":48,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":98,\"propertyId\":48,\"name\":\"Électricité\",\"included\":true,\"detail\":null},{\"id\":99,\"propertyId\":48,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":100,\"propertyId\":48,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":59,\"propertyId\":48,\"slotKey\":\"properties/1601-2e-av-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:24.000Z\"}],\"contact\":{\"id\":37,\"propertyId\":48,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":49,\"name\":\"1602 2ème Avenue\",\"address\":\"1602 2ème Avenue\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 5B1\",\"imageSlot\":\"properties/default\",\"slug\":\"1602-2eme-avenue-shawinigan\",\"displayOrder\":49,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":144,\"propertyId\":49,\"size\":\"5 1/2\",\"monthlyRent\":\"975.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":101,\"propertyId\":49,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":102,\"propertyId\":49,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":103,\"propertyId\":49,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":104,\"propertyId\":49,\"name\":\"Électricité\",\"included\":true,\"detail\":null},{\"id\":105,\"propertyId\":49,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":106,\"propertyId\":49,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":45,\"propertyId\":49,\"slotKey\":\"properties/1602-2e-av-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":46,\"propertyId\":49,\"slotKey\":\"properties/1602-2e-av-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":38,\"propertyId\":49,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":50,\"name\":\"1603 2ème Avenue\",\"address\":\"1627 3e Av\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 5B1\",\"imageSlot\":\"properties/default\",\"slug\":\"1603-2eme-avenue-shawinigan\",\"displayOrder\":50,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":145,\"propertyId\":50,\"size\":\"5 1/2\",\"monthlyRent\":\"975.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":107,\"propertyId\":50,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":108,\"propertyId\":50,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":109,\"propertyId\":50,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":110,\"propertyId\":50,\"name\":\"Électricité\",\"included\":true,\"detail\":null},{\"id\":111,\"propertyId\":50,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":112,\"propertyId\":50,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":47,\"propertyId\":50,\"slotKey\":\"properties/1603-2e-av-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":39,\"propertyId\":50,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":51,\"name\":\"1611 3ème Avenue\",\"address\":\"1611 3ème Avenue\",\"city\":\"Shawinigan\",\"description\":\"Immeuble résidentiel à Shawinigan, G9T 6G9.\",\"postalCode\":\"G9T 5B2\",\"imageSlot\":\"properties/default\",\"slug\":\"1611-3eme-avenue-shawinigan\",\"displayOrder\":51,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":148,\"propertyId\":51,\"size\":\"4 1/2\",\"monthlyRent\":\"875.00\",\"availabilityDate\":\"2026-09-09T00:00:00.000Z\",\"createdAt\":\"2026-09-09T20:06:21.000Z\"}],\"services\":[{\"id\":113,\"propertyId\":51,\"name\":\"Intercom\",\"included\":true,\"detail\":null},{\"id\":114,\"propertyId\":51,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":115,\"propertyId\":51,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":116,\"propertyId\":51,\"name\":\"Électricité\",\"included\":true,\"detail\":null},{\"id\":117,\"propertyId\":51,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":118,\"propertyId\":51,\"name\":\"Piscine extérieure\",\"included\":false,\"detail\":null}],\"photos\":[{\"id\":48,\"propertyId\":51,\"slotKey\":\"properties/1611-3e-av-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":49,\"propertyId\":51,\"slotKey\":\"properties/1611-3e-av-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":50,\"propertyId\":51,\"slotKey\":\"properties/1611-3e-av-3\",\"caption\":null,\"sortOrder\":3,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":40,\"propertyId\":51,\"contactName\":\"Carole Lavergne\",\"phone\":\"819-533-5149\",\"mobile\":\"819-531-0254\",\"fax\":\"819-533-7099\"}},{\"id\":41,\"name\":\"110 Place Brosseau\",\"address\":\"110 Place Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/110-place-brousseau\",\"slug\":\"110-place-brosseau-ste-therese\",\"displayOrder\":1,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":138,\"propertyId\":41,\"size\":\"4 1/2\",\"monthlyRent\":\"1300.00\",\"availabilityDate\":\"2026-12-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":75,\"propertyId\":41,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":76,\"propertyId\":41,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":34,\"propertyId\":41,\"slotKey\":\"properties/110-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":30,\"propertyId\":41,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":42,\"name\":\"120 Place Brosseau\",\"address\":\"134 Pl. Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/120-place-brousseau\",\"slug\":\"120-place-brosseau-ste-therese\",\"displayOrder\":2,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":139,\"propertyId\":42,\"size\":\"5 1/2\",\"monthlyRent\":\"1560.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":77,\"propertyId\":42,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":78,\"propertyId\":42,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":35,\"propertyId\":42,\"slotKey\":\"properties/120-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":31,\"propertyId\":42,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":44,\"name\":\"140 Place Brosseau\",\"address\":\"134 Pl. Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/default\",\"slug\":\"140-place-brosseau-ste-therese\",\"displayOrder\":3,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":140,\"propertyId\":44,\"size\":\"4 1/2\",\"monthlyRent\":\"1250.00\",\"availabilityDate\":\"2026-10-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":81,\"propertyId\":44,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":82,\"propertyId\":44,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":58,\"propertyId\":44,\"slotKey\":\"properties/150-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:16.000Z\"}],\"contact\":{\"id\":33,\"propertyId\":44,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":45,\"name\":\"150 Place Brosseau\",\"address\":\"134 Pl. Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/default\",\"slug\":\"150-place-brosseau-ste-therese\",\"displayOrder\":4,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":141,\"propertyId\":45,\"size\":\"4 1/2\",\"monthlyRent\":\"1250.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":83,\"propertyId\":45,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":84,\"propertyId\":45,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":37,\"propertyId\":45,\"slotKey\":\"properties/150-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":34,\"propertyId\":45,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":40,\"name\":\"100 Place Brosseau\",\"address\":\"100 Place Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/100-place-brousseau\",\"slug\":\"100-place-brosseau-ste-therese\",\"displayOrder\":5,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":73,\"propertyId\":40,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":74,\"propertyId\":40,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":33,\"propertyId\":40,\"slotKey\":\"properties/100-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":29,\"propertyId\":40,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":43,\"name\":\"130 Place Brosseau\",\"address\":\"134 Pl. Brosseau\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J7E 4V3.\",\"postalCode\":\"J7E 3Z2\",\"imageSlot\":\"properties/default\",\"slug\":\"130-place-brosseau-ste-therese\",\"displayOrder\":6,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":79,\"propertyId\":43,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":80,\"propertyId\":43,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":36,\"propertyId\":43,\"slotKey\":\"properties/130-brosseau-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":32,\"propertyId\":43,\"contactName\":\"Lise Duhamel\",\"phone\":\"514-754-4661\",\"mobile\":\"514-754-4661\",\"fax\":\"450-435-9520\"}},{\"id\":21,\"name\":\"2952 Chemin Saint-Charles\",\"address\":\"2952 Chemin Saint-Charles\",\"city\":\"Ste-Thérèse\",\"description\":\"Immeuble résidentiel à Ste-Thérèse, J6V 1A7.\",\"postalCode\":\"J7E 4H3\",\"imageSlot\":\"properties/default\",\"slug\":\"2952-chemin-saint-charles-ste-therese\",\"displayOrder\":21,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[],\"photos\":[{\"id\":15,\"propertyId\":21,\"slotKey\":\"properties/2952-st-charles-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":10,\"propertyId\":21,\"contactName\":null,\"phone\":\"450-668-6146\",\"mobile\":null,\"fax\":\"450-668-6166\"}},{\"id\":22,\"name\":\"1064 McKenzie\",\"address\":\"1064 McKenzie\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3J8.\",\"postalCode\":\"J6W 3H9\",\"imageSlot\":\"properties/default\",\"slug\":\"1064-mckenzie-terrebonne\",\"displayOrder\":22,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":130,\"propertyId\":22,\"size\":\"4 1/2\",\"monthlyRent\":\"1295.00\",\"availabilityDate\":\"2026-10-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":25,\"propertyId\":22,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":26,\"propertyId\":22,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":27,\"propertyId\":22,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":28,\"propertyId\":22,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":29,\"propertyId\":22,\"name\":\"Stationnement intérieur chauffé\",\"included\":false,\"detail\":\"170$/mois\"}],\"photos\":[{\"id\":16,\"propertyId\":22,\"slotKey\":\"properties/1064-mckenzie-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":11,\"propertyId\":22,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":23,\"name\":\"1076 McKenzie\",\"address\":\"1076 McKenzie\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3J8.\",\"postalCode\":\"J6W 3H9\",\"imageSlot\":\"properties/default\",\"slug\":\"1076-mckenzie-terrebonne\",\"displayOrder\":23,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":131,\"propertyId\":23,\"size\":\"4 1/2\",\"monthlyRent\":\"1200.00\",\"availabilityDate\":\"2026-10-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":30,\"propertyId\":23,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":31,\"propertyId\":23,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":32,\"propertyId\":23,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":33,\"propertyId\":23,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":34,\"propertyId\":23,\"name\":\"Stationnement intérieur chauffé\",\"included\":false,\"detail\":\"170$/mois\"}],\"photos\":[{\"id\":51,\"propertyId\":23,\"slotKey\":\"properties/1064-mckenzie-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:10.000Z\"}],\"contact\":{\"id\":12,\"propertyId\":23,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":24,\"name\":\"1090 McKenzie\",\"address\":\"1090 McKenzie\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3J8.\",\"postalCode\":\"J6W 3H9\",\"imageSlot\":\"properties/default\",\"slug\":\"1090-mckenzie-terrebonne\",\"displayOrder\":24,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":132,\"propertyId\":24,\"size\":\"3 1/2 (rénové)\",\"monthlyRent\":\"995.00\",\"availabilityDate\":\"2026-12-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":35,\"propertyId\":24,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":36,\"propertyId\":24,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":37,\"propertyId\":24,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":38,\"propertyId\":24,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":39,\"propertyId\":24,\"name\":\"Stationnement intérieur chauffé\",\"included\":false,\"detail\":\"170$/mois\"}],\"photos\":[{\"id\":52,\"propertyId\":24,\"slotKey\":\"properties/1064-mckenzie-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:10.000Z\"}],\"contact\":{\"id\":13,\"propertyId\":24,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":25,\"name\":\"1108 McKenzie\",\"address\":\"1108 McKenzie\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3J8.\",\"postalCode\":\"J6W 3H9\",\"imageSlot\":\"properties/default\",\"slug\":\"1108-mckenzie-terrebonne\",\"displayOrder\":25,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":133,\"propertyId\":25,\"size\":\"3 1/2\",\"monthlyRent\":\"995.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":40,\"propertyId\":25,\"name\":\"Eau chaude\",\"included\":true,\"detail\":null},{\"id\":41,\"propertyId\":25,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":42,\"propertyId\":25,\"name\":\"Chauffage\",\"included\":true,\"detail\":null},{\"id\":43,\"propertyId\":25,\"name\":\"Concierge\",\"included\":true,\"detail\":null},{\"id\":44,\"propertyId\":25,\"name\":\"Stationnement intérieur chauffé\",\"included\":false,\"detail\":\"170$/mois\"}],\"photos\":[{\"id\":53,\"propertyId\":25,\"slotKey\":\"properties/1064-mckenzie-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:10.000Z\"}],\"contact\":{\"id\":14,\"propertyId\":25,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":26,\"name\":\"1285 Rue François-Paquin\",\"address\":\"1285 François-Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1285-rue-francois-paquin-terrebonne\",\"displayOrder\":26,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":134,\"propertyId\":26,\"size\":\"3 1/2\",\"monthlyRent\":\"1150.00\",\"availabilityDate\":\"2026-10-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":45,\"propertyId\":26,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":46,\"propertyId\":26,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":17,\"propertyId\":26,\"slotKey\":\"properties/1285-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":18,\"propertyId\":26,\"slotKey\":\"properties/1285-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":15,\"propertyId\":26,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":27,\"name\":\"1305 François Paquin\",\"address\":\"1305 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1305-francois-paquin-terrebonne\",\"displayOrder\":27,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":135,\"propertyId\":27,\"size\":\"3 1/2\",\"monthlyRent\":\"1000.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":47,\"propertyId\":27,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":48,\"propertyId\":27,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":19,\"propertyId\":27,\"slotKey\":\"properties/1305-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":20,\"propertyId\":27,\"slotKey\":\"properties/1305-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":16,\"propertyId\":27,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":28,\"name\":\"1325 François Paquin\",\"address\":\"1325 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/1325-francois-paquin\",\"slug\":\"1325-francois-paquin-terrebonne\",\"displayOrder\":28,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":49,\"propertyId\":28,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":50,\"propertyId\":28,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":21,\"propertyId\":28,\"slotKey\":\"properties/1325-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":17,\"propertyId\":28,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":29,\"name\":\"1340 François Paquin\",\"address\":\"1340 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3Z8.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/1340-francois-paquin\",\"slug\":\"1340-francois-paquin-terrebonne\",\"displayOrder\":29,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":51,\"propertyId\":29,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":52,\"propertyId\":29,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":22,\"propertyId\":29,\"slotKey\":\"properties/1340-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":18,\"propertyId\":29,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":30,\"name\":\"1350 François Paquin\",\"address\":\"1350 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3Z8.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/1350-francois-paquin\",\"slug\":\"1350-francois-paquin-terrebonne\",\"displayOrder\":30,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":53,\"propertyId\":30,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":54,\"propertyId\":30,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":23,\"propertyId\":30,\"slotKey\":\"properties/1350-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":19,\"propertyId\":30,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":31,\"name\":\"1345 François Paquin\",\"address\":\"1345 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1345-francois-paquin-terrebonne\",\"displayOrder\":31,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":55,\"propertyId\":31,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":56,\"propertyId\":31,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":24,\"propertyId\":31,\"slotKey\":\"properties/1345-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":25,\"propertyId\":31,\"slotKey\":\"properties/1345-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":20,\"propertyId\":31,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":32,\"name\":\"1355 François Paquin\",\"address\":\"1355 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1355-francois-paquin-terrebonne\",\"displayOrder\":32,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":57,\"propertyId\":32,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":58,\"propertyId\":32,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":54,\"propertyId\":32,\"slotKey\":\"properties/1345-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:12.000Z\"},{\"id\":55,\"propertyId\":32,\"slotKey\":\"properties/1345-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T20:02:12.000Z\"}],\"contact\":{\"id\":21,\"propertyId\":32,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":33,\"name\":\"1365 François Paquin\",\"address\":\"1365 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1365-francois-paquin-terrebonne\",\"displayOrder\":33,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":59,\"propertyId\":33,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":60,\"propertyId\":33,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":26,\"propertyId\":33,\"slotKey\":\"properties/1365-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"},{\"id\":27,\"propertyId\":33,\"slotKey\":\"properties/1365-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":22,\"propertyId\":33,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":34,\"name\":\"1375 François Paquin\",\"address\":\"1375 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1375-francois-paquin-terrebonne\",\"displayOrder\":34,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":61,\"propertyId\":34,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":62,\"propertyId\":34,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":56,\"propertyId\":34,\"slotKey\":\"properties/1365-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T20:02:14.000Z\"},{\"id\":57,\"propertyId\":34,\"slotKey\":\"properties/1365-fp-2\",\"caption\":null,\"sortOrder\":2,\"createdAt\":\"2026-09-01T20:02:14.000Z\"}],\"contact\":{\"id\":23,\"propertyId\":34,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":35,\"name\":\"1370 François Paquin\",\"address\":\"1370 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3Z8.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/1370-francois-paquin\",\"slug\":\"1370-francois-paquin-terrebonne\",\"displayOrder\":35,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":63,\"propertyId\":35,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":64,\"propertyId\":35,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":28,\"propertyId\":35,\"slotKey\":\"properties/1370-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":24,\"propertyId\":35,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":36,\"name\":\"1380 François Paquin\",\"address\":\"1380 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3Z8.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/1380-francois-paquin\",\"slug\":\"1380-francois-paquin-terrebonne\",\"displayOrder\":36,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":65,\"propertyId\":36,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":66,\"propertyId\":36,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":29,\"propertyId\":36,\"slotKey\":\"properties/1380-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":25,\"propertyId\":36,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":37,\"name\":\"1390 François-Paquin\",\"address\":\"1390 François-Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3Z8.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1390-francois-paquin-terrebonne\",\"displayOrder\":37,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":67,\"propertyId\":37,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":68,\"propertyId\":37,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":30,\"propertyId\":37,\"slotKey\":\"properties/1390-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":26,\"propertyId\":37,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":38,\"name\":\"1405 François Paquin\",\"address\":\"1405 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1405-francois-paquin-terrebonne\",\"displayOrder\":38,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[],\"services\":[{\"id\":69,\"propertyId\":38,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":70,\"propertyId\":38,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":31,\"propertyId\":38,\"slotKey\":\"properties/1405-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":27,\"propertyId\":38,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}},{\"id\":39,\"name\":\"1415 François Paquin\",\"address\":\"1415 François Paquin\",\"city\":\"Terrebonne\",\"description\":\"Immeuble résidentiel à Terrebonne, J6W 3M7.\",\"postalCode\":\"J6W 1S6\",\"imageSlot\":\"properties/default\",\"slug\":\"1415-francois-paquin-terrebonne\",\"displayOrder\":39,\"createdAt\":\"2026-09-01T17:39:35.000Z\",\"units\":[{\"id\":136,\"propertyId\":39,\"size\":\"3 1/2 (rénové)\",\"monthlyRent\":\"1000.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"},{\"id\":137,\"propertyId\":39,\"size\":\"3 1/2 (rénové)\",\"monthlyRent\":\"1025.00\",\"availabilityDate\":\"2026-09-01T00:00:00.000Z\",\"createdAt\":\"2026-09-01T18:07:51.000Z\"}],\"services\":[{\"id\":71,\"propertyId\":39,\"name\":\"Stationnement extérieur\",\"included\":true,\"detail\":null},{\"id\":72,\"propertyId\":39,\"name\":\"Concierge\",\"included\":true,\"detail\":null}],\"photos\":[{\"id\":32,\"propertyId\":39,\"slotKey\":\"properties/1415-fp-1\",\"caption\":null,\"sortOrder\":1,\"createdAt\":\"2026-09-01T19:52:40.000Z\"}],\"contact\":{\"id\":28,\"propertyId\":39,\"contactName\":\"M. Hicham Loutfy\",\"phone\":\"450-964-6818\",\"mobile\":\"514-207-0483\",\"fax\":\"450-964-9744\"}}]}},\"actionData\":null,\"errors\":null}");</script></div> | |
| 33 | + <script src="/analytics.js"></script> | |
| 34 | + </body> | |
| 35 | +</html> | |
deleted
tests/fixtures/groupe_theoret/9f0e3873c31695c2407d.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1390 François Paquin</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1390-fran%C3%A7ois-paquin"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{font-size:32px}.x .c1-7f{color:rgb(96, 158, 0)}.x .c1-7k{border-color:rgb(218, 218, 218)}.x .c1-7l{flex-wrap:wrap}.x .c1-7m{margin-right:-12px}.x .c1-7n{margin-bottom:-24px}.x .c1-7o{margin-left:-12px}.x .c1-7p{padding-right:12px}.x .c1-7q{padding-left:12px}.x .c1-7u{margin-bottom:24px}.x .c1-7x{line-height:1.25}.x .c1-7y{-moz-column-gap:40px}.x .c1-7z{-webkit-column-gap:40px}.x .c1-80{column-gap:40px}.x .c1-81{-webkit-column-break-inside:avoid}.x .c1-82{break-inside:avoid-column}.x .c1-83{display:table}.x .c1-87{line-height:1}.x .c1-8e{font-size:inherit !important}.x .c1-8f{line-height:inherit}.x .c1-8g{font-style:italic}.x .c1-8h{text-decoration:line-through}.x .c1-8i{text-decoration:underline}.x .c1-8j{margin-top:32px}.x .c1-8k{flex-basis:83.33333333333334%}.x .c1-8l{max-width:83.33333333333334%}.x .c1-8m{margin-left:8.333333333333332%}.x .c1-8n{color:rgb(82, 82, 82)}.x .c1-8o{font-size:12px}.x .c1-8t{min-height:300px}.x .c1-98 > p > ol{text-align:left}.x .c1-99 > p > ol{display:block}.x .c1-9a > p > ol{padding-left:1.3em}.x .c1-9b > p > ol{margin-left:16px}.x .c1-9c > p > ol{margin-right:16px}.x .c1-9d > p > ol{margin-top:auto}.x .c1-9e > p > ol{margin-bottom:auto}.x .c1-9f > p > ol{text-wrap:pretty}.x .c1-9g > p > ul{text-align:left}.x .c1-9h > p > ul{display:block}.x .c1-9i > p > ul{padding-left:1.3em}.x .c1-9j > p > ul{margin-left:16px}.x .c1-9k > p > ul{margin-right:16px}.x .c1-9l > p > ul{margin-top:auto}.x .c1-9m > p > ul{margin-bottom:auto}.x .c1-9n > p > ul{text-wrap:pretty}.x .c1-9o > ul{text-align:left}.x .c1-9p > ul{display:block}.x .c1-9q > ul{padding-left:1.3em}.x .c1-9r > ul{margin-left:16px}.x .c1-9s > ul{margin-right:16px}.x .c1-9t > ul{margin-top:auto}.x .c1-9u > ul{margin-bottom:auto}.x .c1-9v > ul{text-wrap:pretty}.x .c1-9w > ol{text-align:left}.x .c1-9x > ol{display:block}.x .c1-9y > ol{padding-left:1.3em}.x .c1-9z > ol{margin-left:16px}.x .c1-a0 > ol{margin-right:16px}.x .c1-a1 > ol{margin-top:auto}.x .c1-a2 > ol{margin-bottom:auto}.x .c1-a3 > ol{text-wrap:pretty}.x .c1-a4{white-space:pre-line}.x .c1-a6{border-style:none}.x .c1-a7{display:inline-flex}.x .c1-a8{padding-right:32px}.x .c1-a9{min-height:56px}.x .c1-aa{border-radius:4px}.x .c1-ab{color:rgb(0, 0, 0)}.x .c1-ac{background-color:rgb(102, 168, 0)}.x .c1-ad{text-shadow:none}.x .c1-ae:hover{background-color:rgb(121, 197, 0)}.x .c1-ag{height:inherit}.x .c1-ah{left:0px}.x .c1-ai{z-index:2}.x .c1-aj{transform:translate3d(-120%,0,0)}.x .c1-ak{opacity:0}.x .c1-al{transition:transform .8s ease, opacity .1s}.x .c1-am{align-items:flex-start}.x .c1-an{max-width:600px}.x .c1-ao{border-top-width:1px}.x .c1-ap{border-right-width:1px}.x .c1-aq{border-bottom-width:1px}.x .c1-ar{border-left-width:1px}.x .c1-as{padding-top:23px}.x .c1-at{padding-bottom:7px}.x .c1-au{color:rgb(71, 71, 71)}.x .c1-av::placeholder{color:inherit}.x .c1-aw:focus{outline:none}.x .c1-ax:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-ay:focus + label{font-size:12px}.x .c1-az:focus + label{top:8px}.x .c1-b0:focus + label{color:rgb(79, 130, 0)}.x .c1-b1:not([value=""]) + label{font-size:12px}.x .c1-b2:not([value=""]) + label{top:8px}.x .c1-b3:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-b4::-webkit-input-placeholder{color:inherit}.x .c1-b6{top:33%}.x .c1-b7{left:16px}.x .c1-b8{transition:all .15s ease}.x .c1-b9{resize:vertical}.x .c1-ba{color:rgb(89, 89, 89)}.x .c1-bb{width:fit-content}.x .c1-bc:hover{cursor:pointer}.x .c1-bf{min-height:inherit}.x .c1-bg > *{flex-grow:1}.x .c1-bh > *{min-height:inherit}.x .c1-bi{order:initial}.x .c1-bn{right:0px}.x .c1-bo{bottom:0px}.x .c1-bp{position:absolute !important}.x .c1-bq{transform:translate3d(0,0,0)}.x .c1-br{left:56px}.x .c1-bs{top:8px}.x .c1-bt{min-height:40px}.x .c1-bx{margin-left:-4px}.x .c1-by{width:18px}.x .c1-bz{height:18px}.x .c1-c0{top:50%}.x .c1-c1{right:auto}.x .c1-c2{line-height:0}.x .c1-c3{transform:translateY(-50%)}.x .c1-c4 > img{display:block}.x .c1-c5{margin-left:calc(18px + 8px)}.x .c1-c6{border-top-style:solid}.x .c1-c7{color:rgb(76, 125, 0)}.x .c1-c8{list-style-type:none}.x .c1-cc{padding-top:40px}.x .c1-cd{margin-bottom:4px}.x .c1-ce{z-index:10003}.x .c1-cf{background-color:rgba(0, 0, 0, 0.6)}.x .c1-cu{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-cv{max-height:90vh}.x .c1-cw{height:max-content}.x .c1-cx{border-radius:12px}.x .c1-cy{max-width:515px}.x .c1-de{z-index:1}.x .c1-df{padding-right:4px}.x .c1-dg{padding-left:4px}.x .c1-dh{border-radius:50%}.x .c1-di{height:22px}.x .c1-dj{width:22px}.x .c1-dk{align-self:center}.x .c1-dl{height:auto}.x .c1-dm > *:not(:last-child){margin-bottom:0px}.x .c1-dp > *:not(:last-child){margin-bottom:16px}.x .c1-dq{padding-top:32px}.x .c1-dr{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-b5{font-size:16px}}@media (max-width: 767px){.x .c1-bd{margin-top:24px}}@media (max-width: 767px){.x .c1-bj{order:-1}}@media (max-width: 767px){.x .c1-bu{font-size:12px}}@media (max-width: 767px){.x .c1-bv{left:8px}}@media (max-width: 767px){.x .c1-bw{max-width:90%}}@media (max-width: 767px){.x .c1-c9{flex-direction:column}}@media (max-width: 767px){.x .c1-ca{padding-top:4px}}@media (max-width: 767px){.x .c1-cb{padding-bottom:4px}}@media (max-width: 767px){.x .c1-cz{position:relative}}@media (max-width: 767px){.x .c1-d0{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-d1{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-d2{padding-bottom:16px}}@media (max-width: 767px){.x .c1-d3{max-height:90vh}}@media (max-width: 767px){.x .c1-d4{border-radius:12px}}@media (max-width: 767px){.x .c1-d5{margin-top:16px}}@media (max-width: 767px){.x .c1-d6{margin-right:16px}}@media (max-width: 767px){.x .c1-d7{margin-bottom:16px}}@media (max-width: 767px){.x .c1-d8{margin-left:16px}}@media (max-width: 767px){.x .c1-d9{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7g{font-size:38px}}@media (min-width: 768px){.x .c1-7r{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-7s{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-7t{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-7v{margin-bottom:0}}@media (min-width: 768px){.x .c1-7w{padding-bottom:0}}@media (min-width: 768px){.x .c1-84{flex-direction:row}}@media (min-width: 768px){.x .c1-85{min-width:0}}@media (min-width: 768px){.x .c1-86{max-width:65%}}@media (min-width: 768px){.x .c1-88{max-width:25%}}@media (min-width: 768px){.x .c1-89{text-align:right}}@media (min-width: 768px){.x .c1-8a{margin-right:0}}@media (min-width: 768px){.x .c1-8b{margin-left:0}}@media (min-width: 768px){.x .c1-8c{flex-basis:75%}}@media (min-width: 768px){.x .c1-8d{max-width:75%}}@media (min-width: 768px){.x .c1-8p{font-size:12px}}@media (min-width: 768px){.x .c1-af{width:auto}}@media (min-width: 768px){.x .c1-be{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bk{order:-1}}@media (min-width: 768px){.x .c1-cg{position:absolute}}@media (min-width: 768px){.x .c1-ch{transform:none}}@media (min-width: 768px){.x .c1-ci{max-width:600px}}@media (min-width: 768px){.x .c1-cj{margin-top:24px}}@media (min-width: 768px){.x .c1-ck{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cl{margin-left:auto}}@media (min-width: 768px){.x .c1-cm{margin-right:auto}}@media (min-width: 768px){.x .c1-cn{display:flex}}@media (min-width: 768px){.x .c1-co{align-items:center}}@media (min-width: 768px){.x .c1-cp{pointer-events:none}}@media (min-width: 768px){.x .c1-cq{justify-content:center}}@media (min-width: 768px){.x .c1-cr:before{display:block}}@media (min-width: 768px){.x .c1-cs:before{height:90vh}}@media (min-width: 768px){.x .c1-ct:before{content:""}}@media (min-width: 768px){.x .c1-da{pointer-events:auto}}@media (min-width: 768px){.x .c1-db{border-radius:12px}}@media (min-width: 768px){.x .c1-dc{max-width:515px}}@media (min-width: 768px){.x .c1-dn{padding-left:0px}}@media (min-width: 768px){.x .c1-do{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7h{font-size:38px}}@media (min-width: 1024px){.x .c1-8q{font-size:12px}}@media (min-width: 1024px){.x .c1-8u{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-8v{flex-direction:row}}@media (min-width: 1024px){.x .c1-8w{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-8x{min-height:0px}}@media (min-width: 1024px){.x .c1-8y:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-8z:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-90:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-91{flex-basis:50%}}@media (min-width: 1024px){.x .c1-92{max-width:50%}}@media (min-width: 1024px){.x .c1-93{justify-content:center}}@media (min-width: 1024px){.x .c1-94 > *{max-width:70%}}@media (min-width: 1024px){.x .c1-95{margin-top:0}}@media (min-width: 1024px){.x .c1-96{margin-right:auto}}@media (min-width: 1024px){.x .c1-97{margin-bottom:0}}@media (min-width: 1024px){.x .c1-a5{position:static}}@media (min-width: 1024px){.x .c1-bl > *{max-width:100%}}@media (min-width: 1024px){.x .c1-bm > *{width:100%}}@media (min-width: 1024px){.x .c1-dd{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7i{font-size:44px}}@media (min-width: 1280px){.x .c1-8r{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-7j{font-size:48px}}@media (min-width: 1536px){.x .c1-8s{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-190717" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-190718" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-190719"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190722.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190718" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190723.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-190718190721-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-190724" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190726.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190727.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190728" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190729.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190730.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190731.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190732.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190733.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190734.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190735.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190736.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190737.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190738.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190739.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190740.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190741.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190742.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190743.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190744.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190745.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190746.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190747.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190748.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190749.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190750.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.190751.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190752.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190753.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190754.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190755.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190756.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190757.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190758.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190759.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190760.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190761.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190762.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190763.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-190724-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.190764.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190765.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190766.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190767.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.190768.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="190769" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.190770.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-190725" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-190725" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190771.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-190725" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190772.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-190725" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190773.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-190725" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190774.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-190725" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190775.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-190725" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190776.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-190725" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190777.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-190725" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190778.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-190725" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190779.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-190725" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190780.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-190725" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190781.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-190725" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190782.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-190725" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190783.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-190725" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190784.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-190725" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190785.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-190725" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190786.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-190725" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190787.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-190725" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190788.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-190725" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190789.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-190725" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190790.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-190725" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190791.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-190725" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190792.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-190725" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190793.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-190725" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190794.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-190725" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.190795.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-190725" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190796.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-190725" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190797.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-190725" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190798.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-190725" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190799.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-190725" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190800.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-190725" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190801.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-190725" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190802.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-190725" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190803.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-190725" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190804.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-190725" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190805.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-190725" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190806.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-190725" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190807.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-190725" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.190808.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-190725" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190809.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-190725" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190810.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-190725" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190811.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-190725" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.190812.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.190813.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-190718" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="190814" aria-expanded="false" toggleId="n-190718-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.190815.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.190816.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-190718-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-190718-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-190718-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-190718-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190817.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190818.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="190819" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.190820.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190821.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190822.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190823.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190824.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190825.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190826.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190827.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190828.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190829.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190830.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190831.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190832.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190833.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190834.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190835.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190836.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190837.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190838.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190839.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190840.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190841.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.190842.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190843.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190844.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190845.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190846.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190847.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190848.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190849.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190850.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190851.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190852.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190853.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190854.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.190855.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190856.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190857.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190858.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.190859.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="ee200386-abf5-4091-9817-11ddc1cdf226" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="ee200386-abf5-4091-9817-11ddc1cdf226" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1390 Rue François-Paquin, Terrebonne, Québec, J6W 3Z8</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none;touch-action:auto"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li></ul></div></div></div></div></div></div></div></section> </div></div></div><div id="697f7c06-5cf4-49b8-b97f-8dd3dbd66fa2" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="697f7c06-5cf4-49b8-b97f-8dd3dbd66fa2" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7e c1-7f c1-2z c1-7g c1-72 c1-73 c1-7h c1-7i c1-7j"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-7k c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-7r c1-7s c1-7t c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_1390RUEFRA" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1390 RUE FRANÇOIS-PAQUIN</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s">1100$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-8c c1-8d c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-8j c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-8k c1-8l c1-8m c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-8n c1-8o c1-2z c1-8p c1-8q c1-8r c1-8s">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="a0b81251-2a11-4b10-b635-d13dab4adb39" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="a0b81251-2a11-4b10-b635-d13dab4adb39" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-8t c1-68 c1-b c1-c c1-d c1-8u c1-8v c1-8w c1-8x c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container190860" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-8y c1-8z c1-90 c1-d c1-91 c1-92 c1-93 c1-94 c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-95 c1-96 c1-97 c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-98 c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-9h c1-9i c1-9j c1-9k c1-9l c1-9m c1-9n c1-9o c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8e c1-34 c1-4t c1-8f">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1390 Rue François-Paquin, Terrebonne, Quebec J6W 3Z8, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-a4 c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">M Hicham Loutfy | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509646818" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190862.click,click">450-964-6818</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142070483" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190863.click,click">514-207-0483</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509649744" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190864.click,click">450-964-9744</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190865.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.190866.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-a5 c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190867.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ag c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded190861" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-ah c1-60 c1-ai c1-h c1-i c1-aj c1-ak c1-al c1-4 c1-3 c1-u c1-3b c1-am c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-an c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-7u c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190868" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190868" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190869" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190869" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input190870" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input190870" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-ao c1-ap c1-aq c1-ar c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-b9 c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-b4 c1-b5 c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-ba c1-8o c1-2z c1-8p c1-8q c1-8r c1-8s">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8o c1-1p c1-1q c1-1r c1-8p c1-8q c1-8r c1-8s" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190871.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8o c1-1p c1-1q c1-1r c1-8p c1-8q c1-8r c1-8s" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.190872.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-7l c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bb c1-8i c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-bc c1-bd c1-be c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.190873.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bf c1-bg c1-bh c1-bi c1-b c1-c c1-8y c1-8z c1-90 c1-bj c1-bk c1-d c1-91 c1-92 c1-93 c1-bl c1-bm c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-ah c1-60 c1-bn c1-bo c1-bp c1-bq c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-br c1-bs c1-1n c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-bt c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-44 c1-ae c1-bu c1-bv c1-bw c1-af c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-bx c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-by c1-bz c1-4h c1-c0 c1-ah c1-c1 c1-c2 c1-c3 c1-c4 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-c5 c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-7k c1-ao c1-c6 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-8n c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8i c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8i c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-c8 c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-c9 c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190876.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190877.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190878.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190879.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190880.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190881.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-aq c1-7b c1-1y c1-7u c1-7d c1-p c1-q c1-cc c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cd c1-2u c1-b c1-8n c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-c7 c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.190882.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget190883" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-ah c1-bo c1-bn c1-1j c1-1k c1-1l c1-1m c1-ce c1-4k c1-cf c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-cr c1-cs c1-ct c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-d c1-cr c1-cs c1-ct c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-cu c1-1u c1-cv c1-cw c1-cx c1-cy c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-cz c1-19 c1-c9 c1-d0 c1-d1 c1-d2 c1-d3 c1-2i c1-d4 c1-d5 c1-d6 c1-d7 c1-d8 c1-d9 c1-10 c1-da c1-db c1-dc c1-10 c1-da c1-db c1-dc c1-d c1-dd c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-bn c1-de c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget190883-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-df c1-4r c1-dg c1-1i c1-dh c1-3 c1-di c1-dj c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dk c1-t c1-dl c1-1v c1-1t c1-4k c1-4 c1-dm c1-cx c1-b c1-c c1-dn c1-do c1-db c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-dp c1-dq c1-a8 c1-dr c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8e c1-34 c1-4t c1-8f">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.190884.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget190883-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-a6 c1-a7 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a8 c1-25 c1-27 c1-a9 c1-aa c1-ab c1-ac c1-b c1-4t c1-ad c1-c c1-ae c1-af c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/d96e2ccd10c372f4/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/4e53eee5debba559/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/cd1789d4455c838f1099.html
+0 −654
@@ -1,654 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1064 à 1108 Mc Kenzie</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1064-%C3%A0-1108-mc-kenzie"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{font-size:32px}.x .c1-7f{color:rgb(96, 158, 0)}.x .c1-7k{border-color:rgb(218, 218, 218)}.x .c1-7l{flex-wrap:wrap}.x .c1-7m{margin-right:-12px}.x .c1-7n{margin-bottom:-24px}.x .c1-7o{margin-left:-12px}.x .c1-7p{padding-right:12px}.x .c1-7q{padding-left:12px}.x .c1-7u{margin-bottom:24px}.x .c1-7x{line-height:1.25}.x .c1-7y{-moz-column-gap:40px}.x .c1-7z{-webkit-column-gap:40px}.x .c1-80{column-gap:40px}.x .c1-81{-webkit-column-break-inside:avoid}.x .c1-82{break-inside:avoid-column}.x .c1-83{display:table}.x .c1-87{line-height:1}.x .c1-8c{border-bottom-width:1px}.x .c1-8f{font-size:inherit !important}.x .c1-8g{line-height:inherit}.x .c1-8h{font-style:italic}.x .c1-8i{text-decoration:line-through}.x .c1-8j{text-decoration:underline}.x .c1-8k{margin-top:32px}.x .c1-8l{flex-basis:83.33333333333334%}.x .c1-8m{max-width:83.33333333333334%}.x .c1-8n{margin-left:8.333333333333332%}.x .c1-8o{color:rgb(82, 82, 82)}.x .c1-8p{font-size:12px}.x .c1-8u{min-height:300px}.x .c1-99 > p > ol{text-align:left}.x .c1-9a > p > ol{display:block}.x .c1-9b > p > ol{padding-left:1.3em}.x .c1-9c > p > ol{margin-left:16px}.x .c1-9d > p > ol{margin-right:16px}.x .c1-9e > p > ol{margin-top:auto}.x .c1-9f > p > ol{margin-bottom:auto}.x .c1-9g > p > ol{text-wrap:pretty}.x .c1-9h > p > ul{text-align:left}.x .c1-9i > p > ul{display:block}.x .c1-9j > p > ul{padding-left:1.3em}.x .c1-9k > p > ul{margin-left:16px}.x .c1-9l > p > ul{margin-right:16px}.x .c1-9m > p > ul{margin-top:auto}.x .c1-9n > p > ul{margin-bottom:auto}.x .c1-9o > p > ul{text-wrap:pretty}.x .c1-9p > ul{text-align:left}.x .c1-9q > ul{display:block}.x .c1-9r > ul{padding-left:1.3em}.x .c1-9s > ul{margin-left:16px}.x .c1-9t > ul{margin-right:16px}.x .c1-9u > ul{margin-top:auto}.x .c1-9v > ul{margin-bottom:auto}.x .c1-9w > ul{text-wrap:pretty}.x .c1-9x > ol{text-align:left}.x .c1-9y > ol{display:block}.x .c1-9z > ol{padding-left:1.3em}.x .c1-a0 > ol{margin-left:16px}.x .c1-a1 > ol{margin-right:16px}.x .c1-a2 > ol{margin-top:auto}.x .c1-a3 > ol{margin-bottom:auto}.x .c1-a4 > ol{text-wrap:pretty}.x .c1-a5{white-space:pre-line}.x .c1-a7{border-style:none}.x .c1-a8{display:inline-flex}.x .c1-a9{padding-right:32px}.x .c1-aa{min-height:56px}.x .c1-ab{border-radius:4px}.x .c1-ac{color:rgb(0, 0, 0)}.x .c1-ad{background-color:rgb(102, 168, 0)}.x .c1-ae{text-shadow:none}.x .c1-af:hover{background-color:rgb(121, 197, 0)}.x .c1-ah{height:inherit}.x .c1-ai{left:0px}.x .c1-aj{z-index:2}.x .c1-ak{transform:translate3d(-120%,0,0)}.x .c1-al{opacity:0}.x .c1-am{transition:transform .8s ease, opacity .1s}.x .c1-an{align-items:flex-start}.x .c1-ao{max-width:600px}.x .c1-ap{border-top-width:1px}.x .c1-aq{border-right-width:1px}.x .c1-ar{border-left-width:1px}.x .c1-as{padding-top:23px}.x .c1-at{padding-bottom:7px}.x .c1-au{color:rgb(71, 71, 71)}.x .c1-av::placeholder{color:inherit}.x .c1-aw:focus{outline:none}.x .c1-ax:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-ay:focus + label{font-size:12px}.x .c1-az:focus + label{top:8px}.x .c1-b0:focus + label{color:rgb(79, 130, 0)}.x .c1-b1:not([value=""]) + label{font-size:12px}.x .c1-b2:not([value=""]) + label{top:8px}.x .c1-b3:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-b4::-webkit-input-placeholder{color:inherit}.x .c1-b6{top:33%}.x .c1-b7{left:16px}.x .c1-b8{transition:all .15s ease}.x .c1-b9{resize:vertical}.x .c1-ba{color:rgb(89, 89, 89)}.x .c1-bb{width:fit-content}.x .c1-bc:hover{cursor:pointer}.x .c1-bf{min-height:inherit}.x .c1-bg > *{flex-grow:1}.x .c1-bh > *{min-height:inherit}.x .c1-bi{order:initial}.x .c1-bn{right:0px}.x .c1-bo{bottom:0px}.x .c1-bp{position:absolute !important}.x .c1-bq{transform:translate3d(0,0,0)}.x .c1-br{left:56px}.x .c1-bs{top:8px}.x .c1-bt{min-height:40px}.x .c1-bx{margin-left:-4px}.x .c1-by{width:18px}.x .c1-bz{height:18px}.x .c1-c0{top:50%}.x .c1-c1{right:auto}.x .c1-c2{line-height:0}.x .c1-c3{transform:translateY(-50%)}.x .c1-c4 > img{display:block}.x .c1-c5{margin-left:calc(18px + 8px)}.x .c1-c6{border-top-style:solid}.x .c1-c7{color:rgb(76, 125, 0)}.x .c1-c8{list-style-type:none}.x .c1-cc{padding-top:40px}.x .c1-cd{margin-bottom:4px}.x .c1-ce{z-index:10003}.x .c1-cf{background-color:rgba(0, 0, 0, 0.6)}.x .c1-cu{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-cv{max-height:90vh}.x .c1-cw{height:max-content}.x .c1-cx{border-radius:12px}.x .c1-cy{max-width:515px}.x .c1-de{z-index:1}.x .c1-df{padding-right:4px}.x .c1-dg{padding-left:4px}.x .c1-dh{border-radius:50%}.x .c1-di{height:22px}.x .c1-dj{width:22px}.x .c1-dk{align-self:center}.x .c1-dl{height:auto}.x .c1-dm > *:not(:last-child){margin-bottom:0px}.x .c1-dp > *:not(:last-child){margin-bottom:16px}.x .c1-dq{padding-top:32px}.x .c1-dr{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-b5{font-size:16px}}@media (max-width: 767px){.x .c1-bd{margin-top:24px}}@media (max-width: 767px){.x .c1-bj{order:-1}}@media (max-width: 767px){.x .c1-bu{font-size:12px}}@media (max-width: 767px){.x .c1-bv{left:8px}}@media (max-width: 767px){.x .c1-bw{max-width:90%}}@media (max-width: 767px){.x .c1-c9{flex-direction:column}}@media (max-width: 767px){.x .c1-ca{padding-top:4px}}@media (max-width: 767px){.x .c1-cb{padding-bottom:4px}}@media (max-width: 767px){.x .c1-cz{position:relative}}@media (max-width: 767px){.x .c1-d0{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-d1{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-d2{padding-bottom:16px}}@media (max-width: 767px){.x .c1-d3{max-height:90vh}}@media (max-width: 767px){.x .c1-d4{border-radius:12px}}@media (max-width: 767px){.x .c1-d5{margin-top:16px}}@media (max-width: 767px){.x .c1-d6{margin-right:16px}}@media (max-width: 767px){.x .c1-d7{margin-bottom:16px}}@media (max-width: 767px){.x .c1-d8{margin-left:16px}}@media (max-width: 767px){.x .c1-d9{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7g{font-size:38px}}@media (min-width: 768px){.x .c1-7r{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-7s{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-7t{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-7v{margin-bottom:0}}@media (min-width: 768px){.x .c1-7w{padding-bottom:0}}@media (min-width: 768px){.x .c1-84{flex-direction:row}}@media (min-width: 768px){.x .c1-85{min-width:0}}@media (min-width: 768px){.x .c1-86{max-width:65%}}@media (min-width: 768px){.x .c1-88{max-width:25%}}@media (min-width: 768px){.x .c1-89{text-align:right}}@media (min-width: 768px){.x .c1-8a{margin-right:0}}@media (min-width: 768px){.x .c1-8b{margin-left:0}}@media (min-width: 768px){.x .c1-8d{flex-basis:75%}}@media (min-width: 768px){.x .c1-8e{max-width:75%}}@media (min-width: 768px){.x .c1-8q{font-size:12px}}@media (min-width: 768px){.x .c1-ag{width:auto}}@media (min-width: 768px){.x .c1-be{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bk{order:-1}}@media (min-width: 768px){.x .c1-cg{position:absolute}}@media (min-width: 768px){.x .c1-ch{transform:none}}@media (min-width: 768px){.x .c1-ci{max-width:600px}}@media (min-width: 768px){.x .c1-cj{margin-top:24px}}@media (min-width: 768px){.x .c1-ck{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cl{margin-left:auto}}@media (min-width: 768px){.x .c1-cm{margin-right:auto}}@media (min-width: 768px){.x .c1-cn{display:flex}}@media (min-width: 768px){.x .c1-co{align-items:center}}@media (min-width: 768px){.x .c1-cp{pointer-events:none}}@media (min-width: 768px){.x .c1-cq{justify-content:center}}@media (min-width: 768px){.x .c1-cr:before{display:block}}@media (min-width: 768px){.x .c1-cs:before{height:90vh}}@media (min-width: 768px){.x .c1-ct:before{content:""}}@media (min-width: 768px){.x .c1-da{pointer-events:auto}}@media (min-width: 768px){.x .c1-db{border-radius:12px}}@media (min-width: 768px){.x .c1-dc{max-width:515px}}@media (min-width: 768px){.x .c1-dn{padding-left:0px}}@media (min-width: 768px){.x .c1-do{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7h{font-size:38px}}@media (min-width: 1024px){.x .c1-8r{font-size:12px}}@media (min-width: 1024px){.x .c1-8v{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-8w{flex-direction:row}}@media (min-width: 1024px){.x .c1-8x{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-8y{min-height:0px}}@media (min-width: 1024px){.x .c1-8z:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-90:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-91:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-92{flex-basis:50%}}@media (min-width: 1024px){.x .c1-93{max-width:50%}}@media (min-width: 1024px){.x .c1-94{justify-content:center}}@media (min-width: 1024px){.x .c1-95 > *{max-width:70%}}@media (min-width: 1024px){.x .c1-96{margin-top:0}}@media (min-width: 1024px){.x .c1-97{margin-right:auto}}@media (min-width: 1024px){.x .c1-98{margin-bottom:0}}@media (min-width: 1024px){.x .c1-a6{position:static}}@media (min-width: 1024px){.x .c1-bl > *{max-width:100%}}@media (min-width: 1024px){.x .c1-bm > *{width:100%}}@media (min-width: 1024px){.x .c1-dd{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7i{font-size:44px}}@media (min-width: 1280px){.x .c1-8s{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-7j{font-size:48px}}@media (min-width: 1536px){.x .c1-8t{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-30731" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-30732" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-30733"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.30736.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-30732" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.30737.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-3073230735-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-30738" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30740.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30741.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="30742" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.30743.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30744.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30745.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30746.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30747.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30748.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30749.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30750.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30751.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30752.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30753.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30754.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30755.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30756.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.30757.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30758.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30759.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30760.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30761.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30762.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30763.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30764.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30765.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30766.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30767.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30768.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30769.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30770.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30771.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30772.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30773.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30774.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30775.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30776.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30777.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-30738-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.30778.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30779.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30780.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30781.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.30782.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="30783" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.30784.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-30739" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-30739" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30785.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-30739" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30786.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-30739" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30787.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-30739" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30788.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-30739" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30789.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-30739" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30790.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-30739" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30791.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-30739" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30792.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-30739" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30793.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-30739" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30794.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-30739" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30795.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-30739" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30796.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-30739" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30797.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-30739" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30798.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-30739" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30799.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-30739" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30800.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-30739" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.30801.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-30739" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30802.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-30739" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30803.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-30739" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30804.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-30739" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30805.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-30739" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30806.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-30739" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30807.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-30739" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30808.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-30739" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30809.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-30739" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30810.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-30739" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30811.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-30739" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30812.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-30739" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30813.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-30739" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30814.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-30739" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30815.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-30739" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30816.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-30739" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30817.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-30739" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30818.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-30739" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30819.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-30739" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30820.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-30739" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30821.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-30739" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.30822.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-30739" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30823.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-30739" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30824.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-30739" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30825.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-30739" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.30826.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.30827.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-30732" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="30828" aria-expanded="false" toggleId="n-30732-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.30829.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.30830.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-30732-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-30732-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-30732-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-30732-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30831.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30832.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="30833" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.30834.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30835.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30836.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30837.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30838.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30839.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30840.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30841.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30842.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30843.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30844.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30845.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30846.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30847.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.30848.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30849.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30850.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30851.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30852.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30853.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30854.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30855.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30856.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30857.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30858.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30859.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30860.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30861.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30862.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30863.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30864.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30865.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30866.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30867.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30868.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.30869.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30870.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30871.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30872.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.30873.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="d8da69bf-a3de-4b5e-8d5f-9cfc8e6e0a02" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="d8da69bf-a3de-4b5e-8d5f-9cfc8e6e0a02" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1064-1076-1090-1108 McKenzie, Terrebonne, Québec, J6W 3J8</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none;touch-action:auto"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li></ul></div></div></div></div></div></div></div></section> </div></div></div><div id="71383918-c4bb-432e-aef1-9e2b77ac79f5" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="71383918-c4bb-432e-aef1-9e2b77ac79f5" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7e c1-7f c1-2z c1-7g c1-72 c1-73 c1-7h c1-7i c1-7j"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-7k c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7e c1-7g c1-7h c1-7i c1-7j"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-7r c1-7s c1-7t c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_1064MCKENZ" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1064 MC KENZIE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_AUCUNEDISP" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">Aucune disponibilité</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s"></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-8c c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1076MCKENZ" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1076 MC KENZIE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_AUCUNEDISP" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">Aucune disponibilité</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s"></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-8c c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1090MCKENZ" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_2" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1090 MC KENZIE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_2" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_AUCUNEDISP" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION2_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">Aucune disponibilité</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION2_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s"></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-8c c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1108MCKENZ" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-7u c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_3" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1108 MC KENZIE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_3" class="x-el x-el-div c1-1 c1-2 c1-7y c1-7z c1-80 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-81 c1-82 c1-83 c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-84 c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION3_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-85 c1-86 c1-7v c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION3_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-87 c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-88 c1-89 c1-5d c1-8a c1-7v c1-8b c1-6o c1-6q c1-6r c1-6s">1375$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-8d c1-8e c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION3_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-8k c1-7m c1-7n c1-7o c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-8l c1-8m c1-8n c1-1s c1-7p c1-z c1-7q c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-8o c1-8p c1-2z c1-8q c1-8r c1-8s c1-8t">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="1164fda4-c5b9-4545-88b4-35e65a298c8a" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="1164fda4-c5b9-4545-88b4-35e65a298c8a" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-8u c1-68 c1-b c1-c c1-d c1-8v c1-8w c1-8x c1-8y c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container30874" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-8z c1-90 c1-91 c1-d c1-92 c1-93 c1-94 c1-95 c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-96 c1-97 c1-98 c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-99 c1-9a c1-9b c1-9c c1-9d c1-9e c1-9f c1-9g c1-9h c1-9i c1-9j c1-9k c1-9l c1-9m c1-9n c1-9o c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8f c1-34 c1-4t c1-8g">Services disponibles</strong> </span></p><p style="margin:0"><ul> | |
| 630 | − <li>Eau chaude (Inclus)</li> | |
| 631 | − <li>Stationnement extérieur (Inclus)</li> | |
| 632 | − <li>Chauffage (Inclus)</li> | |
| 633 | − <li>Concierge (Inclus)</li> | |
| 634 | − <li>Stationnement intérieur: chauffé 170$/mois</li> | |
| 635 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1064 Rue Mckenzie, Terrebonne, Quebec J6W 3J8, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-a5 c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">M Hicham Loutfy | |
| 636 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509646818" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.30876.click,click">450-964-6818</a> | |
| 637 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142070483" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.30877.click,click">514-207-0483</a> | |
| 638 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509649744" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.30878.click,click">450-964-9744</a> | |
| 639 | − | |
| 640 | −Bureau | |
| 641 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.30879.click,click">450-668-6146</a> | |
| 642 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.30880.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-a6 c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a7 c1-a8 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a9 c1-25 c1-27 c1-aa c1-ab c1-ac c1-ad c1-b c1-4t c1-ae c1-c c1-af c1-ag c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.30881.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ah c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded30875" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-ai c1-60 c1-aj c1-h c1-i c1-ak c1-al c1-am c1-4 c1-3 c1-u c1-3b c1-an c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-ao c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-7u c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-7l c1-1y c1-7m c1-1z c1-7o c1-b c1-c c1-5d c1-5e c1-7v c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-7p c1-1u c1-7q c1-b c1-c c1-5n c1-5o c1-7w c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input30882" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ap c1-aq c1-8c c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input30882" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input30883" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ap c1-aq c1-8c c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input30883" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input30884" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-ap c1-aq c1-8c c1-ar c1-4f c1-as c1-at c1-4d c1-4e c1-7b c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-ay c1-az c1-b0 c1-b1 c1-b2 c1-b3 c1-b4 c1-b5 c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input30884" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-b6 c1-b7 c1-b8 c1-6t c1-b c1-au c1-c c1-2z c1-b5 c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-ap c1-aq c1-8c c1-ar c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-b9 c1-b c1-au c1-c c1-2z c1-av c1-aw c1-ax c1-b4 c1-b5 c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-ba c1-8p c1-2z c1-8q c1-8r c1-8s c1-8t">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8p c1-1p c1-1q c1-1r c1-8q c1-8r c1-8s c1-8t" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.30885.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-8p c1-1p c1-1q c1-1r c1-8q c1-8r c1-8s c1-8t" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.30886.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-7l c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-a7 c1-a8 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a9 c1-25 c1-27 c1-aa c1-ab c1-ac c1-ad c1-b c1-4t c1-ae c1-c c1-af c1-ag c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bb c1-8j c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-bc c1-bd c1-be c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-a7 c1-a8 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a9 c1-25 c1-27 c1-aa c1-ab c1-ac c1-ad c1-b c1-4t c1-ae c1-c c1-af c1-ag c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.30887.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bf c1-bg c1-bh c1-bi c1-b c1-c c1-8z c1-90 c1-91 c1-bj c1-bk c1-d c1-92 c1-93 c1-94 c1-bl c1-bm c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-ai c1-60 c1-bn c1-bo c1-bp c1-bq c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-br c1-bs c1-1n c1-1i c1-a7 c1-a8 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-bt c1-ab c1-ac c1-ad c1-b c1-4t c1-ae c1-44 c1-af c1-bu c1-bv c1-bw c1-ag c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-bx c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-by c1-bz c1-4h c1-c0 c1-ai c1-c1 c1-c2 c1-c3 c1-c4 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-c5 c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-7k c1-ap c1-c6 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-7u c1-2u c1-b c1-8o c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8j c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8j c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-c7 c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-c8 c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-c9 c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30890.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30891.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30892.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30893.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30894.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-ca c1-cb c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.30895.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-7k c1-8c c1-7b c1-1y c1-7u c1-7d c1-p c1-q c1-cc c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cd c1-2u c1-b c1-8o c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-c7 c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.30896.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget30897" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-ai c1-bo c1-bn c1-1j c1-1k c1-1l c1-1m c1-ce c1-4k c1-cf c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-cr c1-cs c1-ct c1-cg c1-10 c1-ch c1-ci c1-cj c1-ck c1-cl c1-cm c1-cn c1-co c1-cp c1-cq c1-d c1-cr c1-cs c1-ct c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-cu c1-1u c1-cv c1-cw c1-cx c1-cy c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-cz c1-19 c1-c9 c1-d0 c1-d1 c1-d2 c1-d3 c1-2i c1-d4 c1-d5 c1-d6 c1-d7 c1-d8 c1-d9 c1-10 c1-da c1-db c1-dc c1-10 c1-da c1-db c1-dc c1-d c1-dd c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-bn c1-de c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget30897-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-df c1-4r c1-dg c1-1i c1-dh c1-3 c1-di c1-dj c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dk c1-t c1-dl c1-1v c1-1t c1-4k c1-4 c1-dm c1-cx c1-b c1-c c1-dn c1-do c1-db c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-dp c1-dq c1-a9 c1-dr c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-7x c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8f c1-34 c1-4t c1-8g">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.30898.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget30897-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-a7 c1-a8 c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-a9 c1-25 c1-27 c1-aa c1-ab c1-ac c1-ad c1-b c1-4t c1-ae c1-c c1-af c1-ag c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 643 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/e91bce06f372e28/script.js" crossorigin></script> | |
| 644 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 645 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/862f49d026c20b08/script.js" crossorigin></script> | |
| 646 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 647 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 648 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 649 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 650 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 651 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 652 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 653 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 654 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/e104ab030a5d234595c0.html
+0 −655
@@ -1,655 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1611 3ème avenue</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1611-3%C3%A8me-avenue"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{margin-top:32px}.x .c1-91{flex-basis:83.33333333333334%}.x .c1-92{max-width:83.33333333333334%}.x .c1-93{margin-left:8.333333333333332%}.x .c1-94{color:rgb(82, 82, 82)}.x .c1-95{font-size:12px}.x .c1-9a{min-height:300px}.x .c1-9p > p > ol{text-align:left}.x .c1-9q > p > ol{display:block}.x .c1-9r > p > ol{padding-left:1.3em}.x .c1-9s > p > ol{margin-left:16px}.x .c1-9t > p > ol{margin-right:16px}.x .c1-9u > p > ol{margin-top:auto}.x .c1-9v > p > ol{margin-bottom:auto}.x .c1-9w > p > ol{text-wrap:pretty}.x .c1-9x > p > ul{text-align:left}.x .c1-9y > p > ul{display:block}.x .c1-9z > p > ul{padding-left:1.3em}.x .c1-a0 > p > ul{margin-left:16px}.x .c1-a1 > p > ul{margin-right:16px}.x .c1-a2 > p > ul{margin-top:auto}.x .c1-a3 > p > ul{margin-bottom:auto}.x .c1-a4 > p > ul{text-wrap:pretty}.x .c1-a5 > ul{text-align:left}.x .c1-a6 > ul{display:block}.x .c1-a7 > ul{padding-left:1.3em}.x .c1-a8 > ul{margin-left:16px}.x .c1-a9 > ul{margin-right:16px}.x .c1-aa > ul{margin-top:auto}.x .c1-ab > ul{margin-bottom:auto}.x .c1-ac > ul{text-wrap:pretty}.x .c1-ad > ol{text-align:left}.x .c1-ae > ol{display:block}.x .c1-af > ol{padding-left:1.3em}.x .c1-ag > ol{margin-left:16px}.x .c1-ah > ol{margin-right:16px}.x .c1-ai > ol{margin-top:auto}.x .c1-aj > ol{margin-bottom:auto}.x .c1-ak > ol{text-wrap:pretty}.x .c1-al{white-space:pre-line}.x .c1-an{border-style:none}.x .c1-ao{display:inline-flex}.x .c1-ap{padding-right:32px}.x .c1-aq{min-height:56px}.x .c1-ar{border-radius:4px}.x .c1-as{color:rgb(0, 0, 0)}.x .c1-at{background-color:rgb(102, 168, 0)}.x .c1-au{text-shadow:none}.x .c1-av:hover{background-color:rgb(121, 197, 0)}.x .c1-ax{height:inherit}.x .c1-ay{z-index:2}.x .c1-az{transform:translate3d(-120%,0,0)}.x .c1-b0{transition:transform .8s ease, opacity .1s}.x .c1-b1{align-items:flex-start}.x .c1-b2{max-width:600px}.x .c1-b3{border-top-width:1px}.x .c1-b4{border-right-width:1px}.x .c1-b5{border-bottom-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-96{font-size:12px}}@media (min-width: 768px){.x .c1-aw{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-97{font-size:12px}}@media (min-width: 1024px){.x .c1-9b{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9c{flex-direction:row}}@media (min-width: 1024px){.x .c1-9d{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9e{min-height:0px}}@media (min-width: 1024px){.x .c1-9f:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9g:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9h:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9i{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9j{max-width:50%}}@media (min-width: 1024px){.x .c1-9k{justify-content:center}}@media (min-width: 1024px){.x .c1-9l > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9m{margin-top:0}}@media (min-width: 1024px){.x .c1-9n{margin-right:auto}}@media (min-width: 1024px){.x .c1-9o{margin-bottom:0}}@media (min-width: 1024px){.x .c1-am{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-98{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-99{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-183428" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-183429" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-183430"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.183433.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183429" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.183434.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-183429183432-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-183435" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183437.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183438.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183439" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183440.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183441.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183442.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183443.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183444.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183445.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183446.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183447.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183448.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183449.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183450.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183451.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183452.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183453.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183454.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183455.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183456.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183457.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183458.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183459.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183460.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183461.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183462.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183463.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183464.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183465.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183466.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183467.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183468.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183469.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183470.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183471.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183472.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183473.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.183474.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-183435-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.183475.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183476.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183477.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183478.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.183479.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="183480" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.183481.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-183436" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-183436" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183482.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-183436" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183483.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-183436" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183484.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-183436" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183485.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-183436" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183486.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-183436" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183487.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-183436" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183488.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-183436" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183489.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-183436" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183490.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-183436" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183491.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-183436" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183492.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-183436" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183493.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-183436" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183494.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-183436" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183495.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-183436" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183496.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-183436" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183497.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-183436" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183498.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-183436" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183499.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-183436" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183500.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-183436" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183501.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-183436" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183502.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-183436" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183503.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-183436" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183504.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-183436" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183505.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-183436" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183506.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-183436" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183507.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-183436" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183508.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-183436" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183509.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-183436" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183510.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-183436" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183511.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-183436" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183512.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-183436" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183513.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-183436" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183514.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-183436" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183515.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-183436" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183516.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-183436" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183517.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-183436" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.183518.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-183436" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.183519.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-183436" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183520.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-183436" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183521.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-183436" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183522.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-183436" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.183523.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.183524.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-183429" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="183525" aria-expanded="false" toggleId="n-183429-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.183526.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.183527.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-183429-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-183429-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-183429-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-183429-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183528.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183529.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="183530" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.183531.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183532.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183533.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183534.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183535.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183536.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183537.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183538.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183539.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183540.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183541.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183542.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183543.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183544.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183545.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183546.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183547.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183548.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183549.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183550.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183551.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183552.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183553.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183554.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183555.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183556.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183557.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183558.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183559.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183560.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183561.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183562.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183563.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183564.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.183565.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.183566.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183567.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183568.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183569.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.183570.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="faee9a58-a620-4c1a-aa00-162e3ca0ad6e" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="faee9a58-a620-4c1a-aa00-162e3ca0ad6e" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1611 3ÈME AVENUE, SHAWINIGAN, QUÉBEC, G9T 6G9</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="4" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="5" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="766c888c-e554-44db-87a4-ed6d8894a60f" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="766c888c-e554-44db-87a4-ed6d8894a60f" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_16113MEAVE" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1611 3ÈME AVENUE</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">875$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: 1er août 2026</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-90 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-91 c1-92 c1-93 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-94 c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="5868f31a-ce9e-40fa-999e-027a9bb3d4f7" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="5868f31a-ce9e-40fa-999e-027a9bb3d4f7" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9a c1-68 c1-b c1-c c1-d c1-9b c1-9c c1-9d c1-9e c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container183571" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9f c1-9g c1-9h c1-d c1-9i c1-9j c1-9k c1-9l c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9m c1-9n c1-9o c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9p c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Intercom (Inclus)</li> | |
| 631 | − <li>Eau chaude (Inclus)</li> | |
| 632 | − <li>Stationnement extérieur (Inclus)</li> | |
| 633 | − <li>Électricité (inclus) (Inclus)</li> | |
| 634 | − <li>Chauffage (Inclus)</li> | |
| 635 | − <li>Piscine extérieur</li> | |
| 636 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1611 3eve Avenue, Shawinigan, Quebec, Canada G9T 2W6,</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-al c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Carole Lavergne | |
| 637 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195335149" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183573.click,click">819-533-5149</a> | |
| 638 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195310254" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183574.click,click">819-531-0254</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:8195337099" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183575.click,click">819-533-7099</a> | |
| 640 | − | |
| 641 | −Bureau | |
| 642 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183576.click,click">450-668-6146</a> | |
| 643 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.183577.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-am c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.183578.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ax c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded183572" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-ay c1-h c1-i c1-az c1-7e c1-b0 c1-4 c1-3 c1-u c1-3b c1-b1 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b2 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183579" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183579" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183580" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183580" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input183581" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input183581" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b3 c1-b4 c1-b5 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-95 c1-2z c1-96 c1-97 c1-98 c1-99">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.183582.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-95 c1-1p c1-1q c1-1r c1-96 c1-97 c1-98 c1-99" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.183583.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.183584.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9f c1-9g c1-9h c1-by c1-bz c1-d c1-9i c1-9j c1-9k c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-ar c1-as c1-at c1-b c1-4t c1-au c1-44 c1-av c1-c8 c1-c9 c1-ca c1-aw c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b3 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183587.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183588.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183589.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183590.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183591.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.183592.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-b5 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-94 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.183593.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget183594" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget183594-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-ap c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.183595.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget183594-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-an c1-ao c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-ap c1-25 c1-27 c1-aq c1-ar c1-as c1-at c1-b c1-4t c1-au c1-c c1-av c1-aw c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 644 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/e53c3b1534ba26e9/script.js" crossorigin></script> | |
| 645 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 646 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/36f81bd351627e7/script.js" crossorigin></script> | |
| 647 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 648 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 649 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 650 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 651 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 652 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 653 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 654 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 655 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/e997ee4c8b84c6cc8dec.html
+0 −652
@@ -1,652 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>5080-5100 Pie-IX</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/5080-5100-pie-ix"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{border-bottom-width:1px}.x .c1-91{margin-top:32px}.x .c1-92{flex-basis:83.33333333333334%}.x .c1-93{max-width:83.33333333333334%}.x .c1-94{margin-left:8.333333333333332%}.x .c1-95{color:rgb(82, 82, 82)}.x .c1-96{font-size:12px}.x .c1-9b{min-height:300px}.x .c1-9q > p > ol{text-align:left}.x .c1-9r > p > ol{display:block}.x .c1-9s > p > ol{padding-left:1.3em}.x .c1-9t > p > ol{margin-left:16px}.x .c1-9u > p > ol{margin-right:16px}.x .c1-9v > p > ol{margin-top:auto}.x .c1-9w > p > ol{margin-bottom:auto}.x .c1-9x > p > ol{text-wrap:pretty}.x .c1-9y > p > ul{text-align:left}.x .c1-9z > p > ul{display:block}.x .c1-a0 > p > ul{padding-left:1.3em}.x .c1-a1 > p > ul{margin-left:16px}.x .c1-a2 > p > ul{margin-right:16px}.x .c1-a3 > p > ul{margin-top:auto}.x .c1-a4 > p > ul{margin-bottom:auto}.x .c1-a5 > p > ul{text-wrap:pretty}.x .c1-a6 > ul{text-align:left}.x .c1-a7 > ul{display:block}.x .c1-a8 > ul{padding-left:1.3em}.x .c1-a9 > ul{margin-left:16px}.x .c1-aa > ul{margin-right:16px}.x .c1-ab > ul{margin-top:auto}.x .c1-ac > ul{margin-bottom:auto}.x .c1-ad > ul{text-wrap:pretty}.x .c1-ae > ol{text-align:left}.x .c1-af > ol{display:block}.x .c1-ag > ol{padding-left:1.3em}.x .c1-ah > ol{margin-left:16px}.x .c1-ai > ol{margin-right:16px}.x .c1-aj > ol{margin-top:auto}.x .c1-ak > ol{margin-bottom:auto}.x .c1-al > ol{text-wrap:pretty}.x .c1-am{white-space:pre-line}.x .c1-ao{border-style:none}.x .c1-ap{display:inline-flex}.x .c1-aq{padding-right:32px}.x .c1-ar{min-height:56px}.x .c1-as{border-radius:4px}.x .c1-at{color:rgb(0, 0, 0)}.x .c1-au{background-color:rgb(102, 168, 0)}.x .c1-av{text-shadow:none}.x .c1-aw:hover{background-color:rgb(121, 197, 0)}.x .c1-ay{height:inherit}.x .c1-az{z-index:2}.x .c1-b0{transform:translate3d(-120%,0,0)}.x .c1-b1{transition:transform .8s ease, opacity .1s}.x .c1-b2{align-items:flex-start}.x .c1-b3{max-width:600px}.x .c1-b4{border-top-width:1px}.x .c1-b5{border-right-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-97{font-size:12px}}@media (min-width: 768px){.x .c1-ax{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-98{font-size:12px}}@media (min-width: 1024px){.x .c1-9c{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9d{flex-direction:row}}@media (min-width: 1024px){.x .c1-9e{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9f{min-height:0px}}@media (min-width: 1024px){.x .c1-9g:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9h:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9i:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9j{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9k{max-width:50%}}@media (min-width: 1024px){.x .c1-9l{justify-content:center}}@media (min-width: 1024px){.x .c1-9m > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9n{margin-top:0}}@media (min-width: 1024px){.x .c1-9o{margin-right:auto}}@media (min-width: 1024px){.x .c1-9p{margin-bottom:0}}@media (min-width: 1024px){.x .c1-an{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-99{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-9a{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-189839" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-189840" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-189841"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.189844.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-189840" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.189845.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-189840189843-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-189846" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189848.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189849.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="189850" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.189851.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189852.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.189853.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189854.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189855.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189856.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189857.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189858.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189859.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189860.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189861.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189862.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189863.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189864.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189865.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189866.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189867.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189868.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189869.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189870.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189871.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189872.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189873.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189874.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189875.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189876.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189877.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189878.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189879.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189880.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189881.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189882.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189883.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189884.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189885.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-189846-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.189886.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189887.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189888.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189889.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.189890.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="189891" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.189892.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-189847" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-189847" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189893.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-189847" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189894.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-189847" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189895.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-189847" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189896.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-189847" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.189897.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-189847" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189898.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-189847" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189899.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-189847" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189900.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-189847" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189901.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-189847" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189902.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-189847" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189903.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-189847" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189904.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-189847" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189905.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-189847" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189906.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-189847" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189907.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-189847" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189908.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-189847" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189909.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-189847" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189910.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-189847" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189911.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-189847" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189912.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-189847" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189913.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-189847" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189914.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-189847" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189915.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-189847" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189916.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-189847" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189917.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-189847" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189918.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-189847" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189919.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-189847" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189920.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-189847" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189921.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-189847" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189922.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-189847" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189923.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-189847" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189924.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-189847" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189925.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-189847" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189926.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-189847" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189927.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-189847" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189928.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-189847" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189929.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-189847" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.189930.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-189847" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189931.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-189847" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189932.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-189847" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189933.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-189847" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.189934.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.189935.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-189840" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="189936" aria-expanded="false" toggleId="n-189840-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.189937.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.189938.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-189840-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-189840-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-189840-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-189840-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189939.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189940.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="189941" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.189942.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189943.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.189944.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189945.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189946.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189947.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189948.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189949.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189950.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189951.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189952.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189953.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189954.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189955.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189956.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189957.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189958.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189959.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189960.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189961.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189962.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189963.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189964.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189965.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189966.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189967.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189968.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189969.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189970.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189971.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189972.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189973.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189974.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189975.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189976.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.189977.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189978.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189979.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189980.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.189981.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">5080-5100 Pie-IX, Montréal, Québec, H1X 2B6</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="3" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="4" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="af26b907-8654-4d9c-9702-b1408045ecd6" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="af26b907-8654-4d9c-9702-b1408045ecd6" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_5080PIEIX" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">5080 PIE-IX</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1050$/ mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1100$/ mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_5100PIEIXM" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">5100 Pie-IX, MONTREAL</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1000$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1499$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-91 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-92 c1-93 c1-94 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-95 c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="ac508d80-7045-4b76-90d8-0a7dc1cdb4d0" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="ac508d80-7045-4b76-90d8-0a7dc1cdb4d0" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9b c1-68 c1-b c1-c c1-d c1-9c c1-9d c1-9e c1-9f c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container189982" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9g c1-9h c1-9i c1-d c1-9j c1-9k c1-9l c1-9m c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9n c1-9o c1-9p c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-al c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Eau chaude (Inclus)</li> | |
| 631 | − <li>Chauffage (Inclus)</li> | |
| 632 | − <li>Concierge (Inclus)</li> | |
| 633 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">5080 Boulevard Pie-Ix, Montréal, Quebec H1X 2B6, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-am c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Jean Chagnon | |
| 634 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147274108" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.189984.click,click">514-727-4108</a> | |
| 635 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142372678" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.189985.click,click">514-237-2678</a> | |
| 636 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147274108" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.189986.click,click">514-727-4108</a> | |
| 637 | − | |
| 638 | −Bureau | |
| 639 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.189987.click,click">450-668-6146</a> | |
| 640 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.189988.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-an c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.189989.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ay c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded189983" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-az c1-h c1-i c1-b0 c1-7e c1-b1 c1-4 c1-3 c1-u c1-3b c1-b2 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b3 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input189990" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input189990" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input189991" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input189991" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input189992" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input189992" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.189993.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.189994.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.189995.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9g c1-9h c1-9i c1-by c1-bz c1-d c1-9j c1-9k c1-9l c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-as c1-at c1-au c1-b c1-4t c1-av c1-44 c1-aw c1-c8 c1-c9 c1-ca c1-ax c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b4 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.189998.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.189999.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190000.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190001.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190002.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.190003.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.190004.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget190005" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget190005-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-aq c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.190006.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget190005-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 641 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/f80272f7c1bc8cd7/script.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 643 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/6a1474a01f1488e1/script.js" crossorigin></script> | |
| 644 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 645 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 646 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 647 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 648 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 649 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 650 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 651 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 652 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
modified
tests/fixtures/groupe_theoret/expected.json
+233 −219
@@ -1,341 +1,355 @@ | ||
| 1 | 1 | { |
| 2 | − "count": 24, | |
| 2 | + "count": 25, | |
| 3 | 3 | "listings": [ |
| 4 | 4 | { |
| 5 | − "uid": "groupe_theoret:0804af7f7bbf9223", | |
| 6 | − "url": "https://locationappartement.ca/140-150-place-brosseau", | |
| 7 | − "title": "3 1/2 au 150 Place BROSSEAU, Sainte-Thérèse", | |
| 8 | − "address": "150 Place BROSSEAU", | |
| 5 | + "uid": "groupe_theoret:u123", | |
| 6 | + "url": "https://locationappartement.ca/proprietes/5080-pie-ix-montreal", | |
| 7 | + "title": "3 1/2 au 5080 Pie-IX, Montréal", | |
| 8 | + "address": "5080 Pie-IX, H1T 3B4", | |
| 9 | 9 | "sector": "", |
| 10 | − "city": "Sainte-Thérèse", | |
| 10 | + "city": "Montréal", | |
| 11 | 11 | "unit_type": "3½", |
| 12 | − "price": 1150.0, | |
| 13 | − "availability": "1er juillet 2026", | |
| 12 | + "price": 1280.0, | |
| 13 | + "availability": "2026-09-01", | |
| 14 | 14 | "area_sqft": null, |
| 15 | − "n_images": 0, | |
| 16 | − "n_amenities": 2 | |
| 15 | + "n_images": 1, | |
| 16 | + "n_amenities": 3 | |
| 17 | 17 | }, |
| 18 | 18 | { |
| 19 | − "uid": "groupe_theoret:091d2056cd6ada12", | |
| 20 | − "url": "https://locationappartement.ca/1305-fran%C3%A7ois-paquin#9f4f0e24-4771-40e1-8047-c26e35dba891", | |
| 21 | − "title": "3 1/2 au 1305 François-Paquin, Terrebonne", | |
| 22 | − "address": "1305 François-Paquin", | |
| 19 | + "uid": "groupe_theoret:u124", | |
| 20 | + "url": "https://locationappartement.ca/proprietes/15-place-yvon-plourde-charlemagne", | |
| 21 | + "title": "3 1/2 (rénové) au 15 Place Yvon Plourde, Charlemagne", | |
| 22 | + "address": "15 Place Yvon Plourde, J5Z 1V3", | |
| 23 | 23 | "sector": "", |
| 24 | − "city": "Terrebonne", | |
| 24 | + "city": "Charlemagne", | |
| 25 | 25 | "unit_type": "3½", |
| 26 | − "price": 995.0, | |
| 27 | − "availability": "Dès maintenant", | |
| 26 | + "price": 1175.0, | |
| 27 | + "availability": "2026-09-01", | |
| 28 | 28 | "area_sqft": null, |
| 29 | − "n_images": 0, | |
| 30 | − "n_amenities": 2 | |
| 29 | + "n_images": 2, | |
| 30 | + "n_amenities": 5 | |
| 31 | 31 | }, |
| 32 | 32 | { |
| 33 | − "uid": "groupe_theoret:09e75336c77430a5", | |
| 34 | − "url": "https://locationappartement.ca/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b", | |
| 33 | + "uid": "groupe_theoret:u125", | |
| 34 | + "url": "https://locationappartement.ca/proprietes/15-place-yvon-plourde-charlemagne", | |
| 35 | 35 | "title": "4 1/2 au 15 Place Yvon Plourde, Charlemagne", |
| 36 | − "address": "15 Place Yvon Plourde", | |
| 36 | + "address": "15 Place Yvon Plourde, J5Z 1V3", | |
| 37 | 37 | "sector": "", |
| 38 | 38 | "city": "Charlemagne", |
| 39 | 39 | "unit_type": "4½", |
| 40 | − "price": 1350.0, | |
| 41 | − "availability": "Dès maintenant ( Très grand, rénové avec salle à manger )", | |
| 40 | + "price": 1375.0, | |
| 41 | + "availability": "2026-09-01", | |
| 42 | 42 | "area_sqft": null, |
| 43 | − "n_images": 0, | |
| 44 | − "n_amenities": 7 | |
| 43 | + "n_images": 2, | |
| 44 | + "n_amenities": 5 | |
| 45 | 45 | }, |
| 46 | 46 | { |
| 47 | − "uid": "groupe_theoret:1b21422b38acb495", | |
| 48 | − "url": "https://locationappartement.ca/1611-3%C3%A8me-avenue", | |
| 49 | − "title": "4 1/2 au 1611 3ème AVENUE, Shawinigan", | |
| 50 | − "address": "1611 3ème AVENUE", | |
| 47 | + "uid": "groupe_theoret:u126", | |
| 48 | + "url": "https://locationappartement.ca/proprietes/15-place-yvon-plourde-charlemagne", | |
| 49 | + "title": "4 1/2 au 15 Place Yvon Plourde, Charlemagne", | |
| 50 | + "address": "15 Place Yvon Plourde, J5Z 1V3", | |
| 51 | 51 | "sector": "", |
| 52 | − "city": "Shawinigan", | |
| 52 | + "city": "Charlemagne", | |
| 53 | 53 | "unit_type": "4½", |
| 54 | − "price": 875.0, | |
| 55 | − "availability": "1er août 2026", | |
| 54 | + "price": 1175.0, | |
| 55 | + "availability": "2026-09-01", | |
| 56 | 56 | "area_sqft": null, |
| 57 | − "n_images": 0, | |
| 58 | − "n_amenities": 6 | |
| 57 | + "n_images": 2, | |
| 58 | + "n_amenities": 5 | |
| 59 | 59 | }, |
| 60 | 60 | { |
| 61 | − "uid": "groupe_theoret:2ae096be8daa49a5", | |
| 62 | − "url": "https://locationappartement.ca/1064-%C3%A0-1108-mc-kenzie#d8da69bf-a3de-4b5e-8d5f-9cfc8e6e0a02", | |
| 63 | − "title": "4 1/2 au 1108 McKenzie, Terrebonne", | |
| 64 | − "address": "1108 McKenzie", | |
| 61 | + "uid": "groupe_theoret:u127", | |
| 62 | + "url": "https://locationappartement.ca/proprietes/15-place-yvon-plourde-charlemagne", | |
| 63 | + "title": "4 1/2 au 15 Place Yvon Plourde, Charlemagne", | |
| 64 | + "address": "15 Place Yvon Plourde, J5Z 1V3", | |
| 65 | 65 | "sector": "", |
| 66 | − "city": "Terrebonne", | |
| 66 | + "city": "Charlemagne", | |
| 67 | 67 | "unit_type": "4½", |
| 68 | − "price": 1375.0, | |
| 69 | − "availability": "Dès maintenant", | |
| 68 | + "price": 1175.0, | |
| 69 | + "availability": "2026-10-01", | |
| 70 | 70 | "area_sqft": null, |
| 71 | − "n_images": 0, | |
| 71 | + "n_images": 2, | |
| 72 | 72 | "n_amenities": 5 |
| 73 | 73 | }, |
| 74 | 74 | { |
| 75 | − "uid": "groupe_theoret:3951da5cc16e0705", | |
| 76 | − "url": "https://locationappartement.ca/1370-1380-fran%C3%A7ois-paquin#d1f6a43d-fd4b-4814-87ab-cc2ea103672d", | |
| 77 | − "title": "2 1/2 au 1380 François-Paquin, Terrebonne", | |
| 78 | − "address": "1380 François-Paquin", | |
| 75 | + "uid": "groupe_theoret:u128", | |
| 76 | + "url": "https://locationappartement.ca/proprietes/2660-de-la-renaissance-laval", | |
| 77 | + "title": "4 1/2 au 2660 Bd de la Renaissance, Laval", | |
| 78 | + "address": "2660 Bd de la Renaissance, H7L 3W8", | |
| 79 | 79 | "sector": "", |
| 80 | − "city": "Terrebonne", | |
| 81 | − "unit_type": "2½", | |
| 82 | − "price": 800.0, | |
| 83 | − "availability": "Dès maintenant", | |
| 80 | + "city": "Laval", | |
| 81 | + "unit_type": "4½", | |
| 82 | + "price": 1250.0, | |
| 83 | + "availability": "2026-09-01", | |
| 84 | 84 | "area_sqft": null, |
| 85 | − "n_images": 0, | |
| 85 | + "n_images": 1, | |
| 86 | 86 | "n_amenities": 2 |
| 87 | 87 | }, |
| 88 | 88 | { |
| 89 | − "uid": "groupe_theoret:3d640647a15e8819", | |
| 90 | − "url": "https://locationappartement.ca/2660-de-la-rennaissance#c170d160-33e2-4306-86f7-c416087a6907", | |
| 91 | − "title": "4 1/2 au 2660 De la Rennaissance, Laval", | |
| 92 | − "address": "2660 De la Rennaissance", | |
| 89 | + "uid": "groupe_theoret:u129", | |
| 90 | + "url": "https://locationappartement.ca/proprietes/3260-boul-saint-martin-est-laval", | |
| 91 | + "title": "4 1/2 au 3260 Boul Saint-Martin Est, Laval", | |
| 92 | + "address": "3260 Boul Saint-Martin Est, H7K 3G5", | |
| 93 | 93 | "sector": "", |
| 94 | 94 | "city": "Laval", |
| 95 | 95 | "unit_type": "4½", |
| 96 | − "price": 1300.0, | |
| 97 | − "availability": "1er avril 2026", | |
| 96 | + "price": 1335.0, | |
| 97 | + "availability": "2026-09-01", | |
| 98 | 98 | "area_sqft": null, |
| 99 | − "n_images": 0, | |
| 100 | − "n_amenities": 2 | |
| 99 | + "n_images": 3, | |
| 100 | + "n_amenities": 3 | |
| 101 | 101 | }, |
| 102 | 102 | { |
| 103 | − "uid": "groupe_theoret:4467572b8a9905e6", | |
| 104 | − "url": "https://locationappartement.ca/appartements-%C3%A0-louer", | |
| 105 | − "title": "3 1/2 au 1415 François-Paquin, Terrebonne", | |
| 106 | − "address": "1415 François-Paquin", | |
| 103 | + "uid": "groupe_theoret:u130", | |
| 104 | + "url": "https://locationappartement.ca/proprietes/1064-mckenzie-terrebonne", | |
| 105 | + "title": "4 1/2 au 1064 McKenzie, Terrebonne", | |
| 106 | + "address": "1064 McKenzie, J6W 3H9", | |
| 107 | 107 | "sector": "", |
| 108 | 108 | "city": "Terrebonne", |
| 109 | − "unit_type": "3½", | |
| 110 | − "price": 1000.0, | |
| 111 | − "availability": "Dès maintenant", | |
| 112 | − "area_sqft": null, | |
| 113 | − "n_images": 0, | |
| 114 | − "n_amenities": 0 | |
| 115 | − }, | |
| 116 | − { | |
| 117 | − "uid": "groupe_theoret:45cfc2538500881e", | |
| 118 | − "url": "https://locationappartement.ca/5080-5100-pie-ix#5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf", | |
| 119 | − "title": "3 1/2 au 5080 Pie-IX, Montréal", | |
| 120 | − "address": "5080 Pie-IX", | |
| 121 | − "sector": "", | |
| 122 | − "city": "Montréal", | |
| 123 | − "unit_type": "3½", | |
| 124 | − "price": 1050.0, | |
| 125 | − "availability": "Dès maintenant", | |
| 109 | + "unit_type": "4½", | |
| 110 | + "price": 1295.0, | |
| 111 | + "availability": "2026-10-01", | |
| 126 | 112 | "area_sqft": null, |
| 127 | − "n_images": 0, | |
| 128 | − "n_amenities": 3 | |
| 113 | + "n_images": 1, | |
| 114 | + "n_amenities": 5 | |
| 129 | 115 | }, |
| 130 | 116 | { |
| 131 | − "uid": "groupe_theoret:47d62fc481e8054b", | |
| 132 | − "url": "https://locationappartement.ca/100-110-place-brosseau#ddeee870-d743-406c-ac90-b6fb16b01962", | |
| 133 | − "title": "4 1/2 au 100 Place BROSSEAU, Sainte-Thérèse", | |
| 134 | − "address": "100 Place BROSSEAU", | |
| 117 | + "uid": "groupe_theoret:u131", | |
| 118 | + "url": "https://locationappartement.ca/proprietes/1076-mckenzie-terrebonne", | |
| 119 | + "title": "4 1/2 au 1076 McKenzie, Terrebonne", | |
| 120 | + "address": "1076 McKenzie, J6W 3H9", | |
| 135 | 121 | "sector": "", |
| 136 | − "city": "Sainte-Thérèse", | |
| 122 | + "city": "Terrebonne", | |
| 137 | 123 | "unit_type": "4½", |
| 138 | − "price": 1250.0, | |
| 139 | − "availability": "Dès maintenant", | |
| 124 | + "price": 1200.0, | |
| 125 | + "availability": "2026-10-01", | |
| 140 | 126 | "area_sqft": null, |
| 141 | − "n_images": 0, | |
| 142 | − "n_amenities": 2 | |
| 127 | + "n_images": 1, | |
| 128 | + "n_amenities": 5 | |
| 143 | 129 | }, |
| 144 | 130 | { |
| 145 | − "uid": "groupe_theoret:4da500e8d7d2b01d", | |
| 146 | − "url": "https://locationappartement.ca/140-150-place-brosseau", | |
| 147 | − "title": "4 1/2 au 140 Place BROSSEAU, Sainte-Thérèse", | |
| 148 | − "address": "140 Place BROSSEAU", | |
| 131 | + "uid": "groupe_theoret:u132", | |
| 132 | + "url": "https://locationappartement.ca/proprietes/1090-mckenzie-terrebonne", | |
| 133 | + "title": "3 1/2 (rénové) au 1090 McKenzie, Terrebonne", | |
| 134 | + "address": "1090 McKenzie, J6W 3H9", | |
| 149 | 135 | "sector": "", |
| 150 | − "city": "Sainte-Thérèse", | |
| 151 | − "unit_type": "4½", | |
| 152 | − "price": 1250.0, | |
| 153 | − "availability": "1er juillet 2026", | |
| 136 | + "city": "Terrebonne", | |
| 137 | + "unit_type": "3½", | |
| 138 | + "price": 995.0, | |
| 139 | + "availability": "2026-12-01", | |
| 154 | 140 | "area_sqft": null, |
| 155 | − "n_images": 0, | |
| 156 | − "n_amenities": 2 | |
| 141 | + "n_images": 1, | |
| 142 | + "n_amenities": 5 | |
| 157 | 143 | }, |
| 158 | 144 | { |
| 159 | − "uid": "groupe_theoret:51f60499c643eca1", | |
| 160 | − "url": "https://locationappartement.ca/15-yvon-plourde#cdfeeb7a-237a-4faf-bd77-701eb91f6fdb", | |
| 161 | − "title": "3 1/2 au 15 Place Yvon Plourde, Charlemagne", | |
| 162 | − "address": "15 Place Yvon Plourde", | |
| 145 | + "uid": "groupe_theoret:u133", | |
| 146 | + "url": "https://locationappartement.ca/proprietes/1108-mckenzie-terrebonne", | |
| 147 | + "title": "3 1/2 au 1108 McKenzie, Terrebonne", | |
| 148 | + "address": "1108 McKenzie, J6W 3H9", | |
| 163 | 149 | "sector": "", |
| 164 | − "city": "Charlemagne", | |
| 150 | + "city": "Terrebonne", | |
| 165 | 151 | "unit_type": "3½", |
| 166 | − "price": 1100.0, | |
| 167 | − "availability": "Dès maintenant ( Très grand, rénové )", | |
| 152 | + "price": 995.0, | |
| 153 | + "availability": "2026-09-01", | |
| 168 | 154 | "area_sqft": null, |
| 169 | − "n_images": 0, | |
| 170 | − "n_amenities": 7 | |
| 155 | + "n_images": 1, | |
| 156 | + "n_amenities": 5 | |
| 171 | 157 | }, |
| 172 | 158 | { |
| 173 | − "uid": "groupe_theoret:5d06afdd4e3c19b7", | |
| 174 | − "url": "https://locationappartement.ca/1370-1380-fran%C3%A7ois-paquin#d1f6a43d-fd4b-4814-87ab-cc2ea103672d", | |
| 175 | − "title": "2 1/2 au 1380 François-Paquin, Terrebonne", | |
| 176 | − "address": "1380 François-Paquin", | |
| 159 | + "uid": "groupe_theoret:u134", | |
| 160 | + "url": "https://locationappartement.ca/proprietes/1285-rue-francois-paquin-terrebonne", | |
| 161 | + "title": "3 1/2 au 1285 François-Paquin, Terrebonne", | |
| 162 | + "address": "1285 François-Paquin, J6W 1S6", | |
| 177 | 163 | "sector": "", |
| 178 | 164 | "city": "Terrebonne", |
| 179 | − "unit_type": "2½", | |
| 180 | − "price": 995.0, | |
| 181 | − "availability": "Dès maintenant", | |
| 165 | + "unit_type": "3½", | |
| 166 | + "price": 1150.0, | |
| 167 | + "availability": "2026-10-01", | |
| 182 | 168 | "area_sqft": null, |
| 183 | − "n_images": 0, | |
| 169 | + "n_images": 2, | |
| 184 | 170 | "n_amenities": 2 |
| 185 | 171 | }, |
| 186 | 172 | { |
| 187 | − "uid": "groupe_theoret:6b0976f44fd4833b", | |
| 188 | − "url": "https://locationappartement.ca/appartements-%C3%A0-louer", | |
| 189 | − "title": "4 1/2 au 5100 Pie-IX, Montréal", | |
| 190 | − "address": "5100 Pie-IX", | |
| 173 | + "uid": "groupe_theoret:u135", | |
| 174 | + "url": "https://locationappartement.ca/proprietes/1305-francois-paquin-terrebonne", | |
| 175 | + "title": "3 1/2 au 1305 François Paquin, Terrebonne", | |
| 176 | + "address": "1305 François Paquin, J6W 1S6", | |
| 191 | 177 | "sector": "", |
| 192 | − "city": "Montréal", | |
| 193 | − "unit_type": "4½", | |
| 194 | − "price": 1499.0, | |
| 195 | − "availability": "Dès maintenant", | |
| 178 | + "city": "Terrebonne", | |
| 179 | + "unit_type": "3½", | |
| 180 | + "price": 1000.0, | |
| 181 | + "availability": "2026-09-01", | |
| 196 | 182 | "area_sqft": null, |
| 197 | − "n_images": 0, | |
| 198 | − "n_amenities": 0 | |
| 183 | + "n_images": 2, | |
| 184 | + "n_amenities": 2 | |
| 199 | 185 | }, |
| 200 | 186 | { |
| 201 | − "uid": "groupe_theoret:75683d6c9f88a5af", | |
| 202 | − "url": "https://locationappartement.ca/1390-fran%C3%A7ois-paquin#ee200386-abf5-4091-9817-11ddc1cdf226", | |
| 203 | − "title": "3 1/2 au 1415 François-Paquin, Terrebonne", | |
| 204 | − "address": "1415 François-Paquin", | |
| 187 | + "uid": "groupe_theoret:u136", | |
| 188 | + "url": "https://locationappartement.ca/proprietes/1415-francois-paquin-terrebonne", | |
| 189 | + "title": "3 1/2 (rénové) au 1415 François Paquin, Terrebonne", | |
| 190 | + "address": "1415 François Paquin, J6W 1S6", | |
| 205 | 191 | "sector": "", |
| 206 | 192 | "city": "Terrebonne", |
| 207 | 193 | "unit_type": "3½", |
| 208 | 194 | "price": 1000.0, |
| 209 | − "availability": "Dès maintenant", | |
| 195 | + "availability": "2026-09-01", | |
| 210 | 196 | "area_sqft": null, |
| 211 | − "n_images": 0, | |
| 197 | + "n_images": 1, | |
| 212 | 198 | "n_amenities": 2 |
| 213 | 199 | }, |
| 214 | 200 | { |
| 215 | − "uid": "groupe_theoret:87d1d324d1e70581", | |
| 216 | − "url": "https://locationappartement.ca/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b", | |
| 217 | − "title": "3 1/2 au 15 Place Yvon Plourde, Charlemagne", | |
| 218 | − "address": "15 Place Yvon Plourde", | |
| 201 | + "uid": "groupe_theoret:u137", | |
| 202 | + "url": "https://locationappartement.ca/proprietes/1415-francois-paquin-terrebonne", | |
| 203 | + "title": "3 1/2 (rénové) au 1415 François Paquin, Terrebonne", | |
| 204 | + "address": "1415 François Paquin, J6W 1S6", | |
| 219 | 205 | "sector": "", |
| 220 | − "city": "Charlemagne", | |
| 206 | + "city": "Terrebonne", | |
| 221 | 207 | "unit_type": "3½", |
| 222 | − "price": 1150.0, | |
| 223 | − "availability": "Dès maintenant", | |
| 208 | + "price": 1025.0, | |
| 209 | + "availability": "2026-09-01", | |
| 224 | 210 | "area_sqft": null, |
| 225 | − "n_images": 0, | |
| 226 | − "n_amenities": 7 | |
| 211 | + "n_images": 1, | |
| 212 | + "n_amenities": 2 | |
| 227 | 213 | }, |
| 228 | 214 | { |
| 229 | − "uid": "groupe_theoret:9a9a3ba689025849", | |
| 230 | − "url": "https://locationappartement.ca/15-yvon-plourde#336451df-5c3f-4389-aa6b-f2128d9beb2b", | |
| 231 | − "title": "3 1/2 au 15 Place Yvon Plourde, Charlemagne", | |
| 232 | − "address": "15 Place Yvon Plourde", | |
| 215 | + "uid": "groupe_theoret:u138", | |
| 216 | + "url": "https://locationappartement.ca/proprietes/110-place-brosseau-ste-therese", | |
| 217 | + "title": "4 1/2 au 110 Place Brosseau, Sainte-Thérèse", | |
| 218 | + "address": "110 Place Brosseau, J7E 3Z2", | |
| 233 | 219 | "sector": "", |
| 234 | − "city": "Charlemagne", | |
| 235 | − "unit_type": "3½", | |
| 236 | − "price": 1175.0, | |
| 237 | − "availability": "1er avril 2026", | |
| 220 | + "city": "Sainte-Thérèse", | |
| 221 | + "unit_type": "4½", | |
| 222 | + "price": 1300.0, | |
| 223 | + "availability": "2026-12-01", | |
| 238 | 224 | "area_sqft": null, |
| 239 | − "n_images": 0, | |
| 240 | − "n_amenities": 7 | |
| 225 | + "n_images": 1, | |
| 226 | + "n_amenities": 2 | |
| 241 | 227 | }, |
| 242 | 228 | { |
| 243 | − "uid": "groupe_theoret:9b212e3055ec251a", | |
| 244 | − "url": "https://locationappartement.ca/100-110-place-brosseau#ddeee870-d743-406c-ac90-b6fb16b01962", | |
| 245 | − "title": "3 1/2 au 110 Place BROSSEAU, Sainte-Thérèse", | |
| 246 | − "address": "110 Place BROSSEAU", | |
| 229 | + "uid": "groupe_theoret:u139", | |
| 230 | + "url": "https://locationappartement.ca/proprietes/120-place-brosseau-ste-therese", | |
| 231 | + "title": "5 1/2 au 134 Pl. Brosseau, Sainte-Thérèse", | |
| 232 | + "address": "134 Pl. Brosseau, J7E 3Z2", | |
| 247 | 233 | "sector": "", |
| 248 | 234 | "city": "Sainte-Thérèse", |
| 249 | − "unit_type": "3½", | |
| 250 | − "price": 1150.0, | |
| 251 | − "availability": "Dès maintenant", | |
| 235 | + "unit_type": "5½", | |
| 236 | + "price": 1560.0, | |
| 237 | + "availability": "2026-09-01", | |
| 252 | 238 | "area_sqft": null, |
| 253 | − "n_images": 0, | |
| 239 | + "n_images": 1, | |
| 254 | 240 | "n_amenities": 2 |
| 255 | 241 | }, |
| 256 | 242 | { |
| 257 | − "uid": "groupe_theoret:aa4312eec90dd053", | |
| 258 | − "url": "https://locationappartement.ca/1602-2%C3%A8me-avenue", | |
| 259 | − "title": "3 1/2 au 1602 2ème Avenue, Shawinigan", | |
| 260 | − "address": "1602 2ème Avenue", | |
| 243 | + "uid": "groupe_theoret:u140", | |
| 244 | + "url": "https://locationappartement.ca/proprietes/140-place-brosseau-ste-therese", | |
| 245 | + "title": "4 1/2 au 134 Pl. Brosseau, Sainte-Thérèse", | |
| 246 | + "address": "134 Pl. Brosseau, J7E 3Z2", | |
| 261 | 247 | "sector": "", |
| 262 | − "city": "Shawinigan", | |
| 263 | − "unit_type": "3½", | |
| 264 | − "price": 775.0, | |
| 265 | − "availability": "1er juillet 2026", | |
| 248 | + "city": "Sainte-Thérèse", | |
| 249 | + "unit_type": "4½", | |
| 250 | + "price": 1250.0, | |
| 251 | + "availability": "2026-10-01", | |
| 266 | 252 | "area_sqft": null, |
| 267 | − "n_images": 0, | |
| 268 | − "n_amenities": 8 | |
| 253 | + "n_images": 1, | |
| 254 | + "n_amenities": 2 | |
| 269 | 255 | }, |
| 270 | 256 | { |
| 271 | − "uid": "groupe_theoret:cca43c4875f2923e", | |
| 272 | − "url": "https://locationappartement.ca/1405-fran%C3%A7ois-paquin#af85a1e7-267d-427a-aa91-4021a4a2fb46", | |
| 273 | − "title": "4 1/2 au 1405 François-Paquin, Terrebonne", | |
| 274 | − "address": "1405 François-Paquin", | |
| 257 | + "uid": "groupe_theoret:u141", | |
| 258 | + "url": "https://locationappartement.ca/proprietes/150-place-brosseau-ste-therese", | |
| 259 | + "title": "4 1/2 au 134 Pl. Brosseau, Sainte-Thérèse", | |
| 260 | + "address": "134 Pl. Brosseau, J7E 3Z2", | |
| 275 | 261 | "sector": "", |
| 276 | − "city": "Terrebonne", | |
| 262 | + "city": "Sainte-Thérèse", | |
| 277 | 263 | "unit_type": "4½", |
| 278 | − "price": 1100.0, | |
| 279 | − "availability": "Dès maintenant", | |
| 264 | + "price": 1250.0, | |
| 265 | + "availability": "2026-09-01", | |
| 280 | 266 | "area_sqft": null, |
| 281 | − "n_images": 0, | |
| 267 | + "n_images": 1, | |
| 282 | 268 | "n_amenities": 2 |
| 283 | 269 | }, |
| 284 | 270 | { |
| 285 | − "uid": "groupe_theoret:d9371d1c0f7743da", | |
| 286 | − "url": "https://locationappartement.ca/5080-5100-pie-ix#5f15a6f5-ac50-4019-ae2a-f5a6ca5eeadf", | |
| 287 | − "title": "3 1/2 au 5080 Pie-IX, Montréal", | |
| 288 | − "address": "5080 Pie-IX", | |
| 271 | + "uid": "groupe_theoret:u142", | |
| 272 | + "url": "https://locationappartement.ca/proprietes/299-16e-rue-shawinigan", | |
| 273 | + "title": "5 1/2 au 299 16e Rue, Shawinigan", | |
| 274 | + "address": "299 16e Rue, G9T 6G9", | |
| 289 | 275 | "sector": "", |
| 290 | − "city": "Montréal", | |
| 291 | − "unit_type": "3½", | |
| 292 | − "price": 1100.0, | |
| 293 | − "availability": "Dès maintenant", | |
| 276 | + "city": "Shawinigan", | |
| 277 | + "unit_type": "5½", | |
| 278 | + "price": 975.0, | |
| 279 | + "availability": "2026-12-01", | |
| 294 | 280 | "area_sqft": null, |
| 295 | − "n_images": 0, | |
| 281 | + "n_images": 3, | |
| 296 | 282 | "n_amenities": 3 |
| 297 | 283 | }, |
| 298 | 284 | { |
| 299 | − "uid": "groupe_theoret:ef0e895025041096", | |
| 300 | − "url": "https://locationappartement.ca/1405-fran%C3%A7ois-paquin", | |
| 301 | − "title": "4 1/2 au 1390 François-Paquin, Terrebonne", | |
| 302 | − "address": "1390 François-Paquin", | |
| 285 | + "uid": "groupe_theoret:u143", | |
| 286 | + "url": "https://locationappartement.ca/proprietes/1600-2eme-avenue-shawinigan", | |
| 287 | + "title": "5 1/2 au 1600 2ème Avenue, Shawinigan", | |
| 288 | + "address": "1600 2ème Avenue, G9T 5B1", | |
| 303 | 289 | "sector": "", |
| 304 | − "city": "Terrebonne", | |
| 305 | − "unit_type": "4½", | |
| 306 | − "price": 1100.0, | |
| 307 | − "availability": "Dès maintenant", | |
| 290 | + "city": "Shawinigan", | |
| 291 | + "unit_type": "5½", | |
| 292 | + "price": 975.0, | |
| 293 | + "availability": "2026-12-01", | |
| 308 | 294 | "area_sqft": null, |
| 309 | − "n_images": 0, | |
| 310 | − "n_amenities": 2 | |
| 295 | + "n_images": 3, | |
| 296 | + "n_amenities": 5 | |
| 311 | 297 | }, |
| 312 | 298 | { |
| 313 | − "uid": "groupe_theoret:f42fa5c0dd2b277e", | |
| 314 | − "url": "https://locationappartement.ca/1305-fran%C3%A7ois-paquin#9f4f0e24-4771-40e1-8047-c26e35dba891", | |
| 315 | − "title": "3 1/2 au 1355 François-Paquin, Terrebonne", | |
| 316 | − "address": "1355 François-Paquin", | |
| 299 | + "uid": "groupe_theoret:u144", | |
| 300 | + "url": "https://locationappartement.ca/proprietes/1602-2eme-avenue-shawinigan", | |
| 301 | + "title": "5 1/2 au 1602 2ème Avenue, Shawinigan", | |
| 302 | + "address": "1602 2ème Avenue, G9T 5B1", | |
| 317 | 303 | "sector": "", |
| 318 | − "city": "Terrebonne", | |
| 319 | − "unit_type": "3½", | |
| 320 | − "price": 995.0, | |
| 321 | − "availability": "1 mars 2026", | |
| 304 | + "city": "Shawinigan", | |
| 305 | + "unit_type": "5½", | |
| 306 | + "price": 975.0, | |
| 307 | + "availability": "2026-09-01", | |
| 322 | 308 | "area_sqft": null, |
| 323 | − "n_images": 0, | |
| 324 | − "n_amenities": 2 | |
| 309 | + "n_images": 2, | |
| 310 | + "n_amenities": 5 | |
| 325 | 311 | }, |
| 326 | 312 | { |
| 327 | − "uid": "groupe_theoret:f7eaf07a8fbd79bf", | |
| 328 | − "url": "https://locationappartement.ca/appartements-%C3%A0-louer", | |
| 329 | − "title": "3 1/2 au 5100 Pie-IX, Montréal", | |
| 330 | − "address": "5100 Pie-IX", | |
| 313 | + "uid": "groupe_theoret:u145", | |
| 314 | + "url": "https://locationappartement.ca/proprietes/1603-2eme-avenue-shawinigan", | |
| 315 | + "title": "5 1/2 au 1627 3e Av, Shawinigan", | |
| 316 | + "address": "1627 3e Av, G9T 5B1", | |
| 331 | 317 | "sector": "", |
| 332 | − "city": "Montréal", | |
| 333 | − "unit_type": "3½", | |
| 334 | − "price": 1000.0, | |
| 335 | − "availability": "Dès maintenant", | |
| 318 | + "city": "Shawinigan", | |
| 319 | + "unit_type": "5½", | |
| 320 | + "price": 975.0, | |
| 321 | + "availability": "2026-09-01", | |
| 322 | + "area_sqft": null, | |
| 323 | + "n_images": 1, | |
| 324 | + "n_amenities": 5 | |
| 325 | + }, | |
| 326 | + { | |
| 327 | + "uid": "groupe_theoret:u146", | |
| 328 | + "url": "https://locationappartement.ca/proprietes/299-16e-rue-shawinigan", | |
| 329 | + "title": "4 1/2 au 299 16e Rue, Shawinigan", | |
| 330 | + "address": "299 16e Rue, G9T 6G9", | |
| 331 | + "sector": "", | |
| 332 | + "city": "Shawinigan", | |
| 333 | + "unit_type": "4½", | |
| 334 | + "price": 875.0, | |
| 335 | + "availability": "2026-01-01", | |
| 336 | + "area_sqft": null, | |
| 337 | + "n_images": 3, | |
| 338 | + "n_amenities": 3 | |
| 339 | + }, | |
| 340 | + { | |
| 341 | + "uid": "groupe_theoret:u148", | |
| 342 | + "url": "https://locationappartement.ca/proprietes/1611-3eme-avenue-shawinigan", | |
| 343 | + "title": "4 1/2 au 1611 3ème Avenue, Shawinigan", | |
| 344 | + "address": "1611 3ème Avenue, G9T 5B2", | |
| 345 | + "sector": "", | |
| 346 | + "city": "Shawinigan", | |
| 347 | + "unit_type": "4½", | |
| 348 | + "price": 875.0, | |
| 349 | + "availability": "2026-09-09", | |
| 336 | 350 | "area_sqft": null, |
| 337 | − "n_images": 0, | |
| 338 | − "n_amenities": 0 | |
| 351 | + "n_images": 3, | |
| 352 | + "n_amenities": 5 | |
| 339 | 353 | } |
| 340 | 354 | ] |
| 341 | 355 | } |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/fbd90a752a5446ed3886.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>1370-1380 François Paquin</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/1370-1380-fran%C3%A7ois-paquin"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8t{border-bottom-width:1px}.x .c1-8w{font-size:inherit !important}.x .c1-8x{line-height:inherit}.x .c1-8y{font-style:italic}.x .c1-8z{text-decoration:line-through}.x .c1-90{text-decoration:underline}.x .c1-91{margin-top:32px}.x .c1-92{flex-basis:83.33333333333334%}.x .c1-93{max-width:83.33333333333334%}.x .c1-94{margin-left:8.333333333333332%}.x .c1-95{color:rgb(82, 82, 82)}.x .c1-96{font-size:12px}.x .c1-9b{min-height:300px}.x .c1-9q > p > ol{text-align:left}.x .c1-9r > p > ol{display:block}.x .c1-9s > p > ol{padding-left:1.3em}.x .c1-9t > p > ol{margin-left:16px}.x .c1-9u > p > ol{margin-right:16px}.x .c1-9v > p > ol{margin-top:auto}.x .c1-9w > p > ol{margin-bottom:auto}.x .c1-9x > p > ol{text-wrap:pretty}.x .c1-9y > p > ul{text-align:left}.x .c1-9z > p > ul{display:block}.x .c1-a0 > p > ul{padding-left:1.3em}.x .c1-a1 > p > ul{margin-left:16px}.x .c1-a2 > p > ul{margin-right:16px}.x .c1-a3 > p > ul{margin-top:auto}.x .c1-a4 > p > ul{margin-bottom:auto}.x .c1-a5 > p > ul{text-wrap:pretty}.x .c1-a6 > ul{text-align:left}.x .c1-a7 > ul{display:block}.x .c1-a8 > ul{padding-left:1.3em}.x .c1-a9 > ul{margin-left:16px}.x .c1-aa > ul{margin-right:16px}.x .c1-ab > ul{margin-top:auto}.x .c1-ac > ul{margin-bottom:auto}.x .c1-ad > ul{text-wrap:pretty}.x .c1-ae > ol{text-align:left}.x .c1-af > ol{display:block}.x .c1-ag > ol{padding-left:1.3em}.x .c1-ah > ol{margin-left:16px}.x .c1-ai > ol{margin-right:16px}.x .c1-aj > ol{margin-top:auto}.x .c1-ak > ol{margin-bottom:auto}.x .c1-al > ol{text-wrap:pretty}.x .c1-am{white-space:pre-line}.x .c1-ao{border-style:none}.x .c1-ap{display:inline-flex}.x .c1-aq{padding-right:32px}.x .c1-ar{min-height:56px}.x .c1-as{border-radius:4px}.x .c1-at{color:rgb(0, 0, 0)}.x .c1-au{background-color:rgb(102, 168, 0)}.x .c1-av{text-shadow:none}.x .c1-aw:hover{background-color:rgb(121, 197, 0)}.x .c1-ay{height:inherit}.x .c1-az{z-index:2}.x .c1-b0{transform:translate3d(-120%,0,0)}.x .c1-b1{transition:transform .8s ease, opacity .1s}.x .c1-b2{align-items:flex-start}.x .c1-b3{max-width:600px}.x .c1-b4{border-top-width:1px}.x .c1-b5{border-right-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8u{flex-basis:75%}}@media (min-width: 768px){.x .c1-8v{max-width:75%}}@media (min-width: 768px){.x .c1-97{font-size:12px}}@media (min-width: 768px){.x .c1-ax{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-98{font-size:12px}}@media (min-width: 1024px){.x .c1-9c{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9d{flex-direction:row}}@media (min-width: 1024px){.x .c1-9e{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9f{min-height:0px}}@media (min-width: 1024px){.x .c1-9g:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9h:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9i:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9j{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9k{max-width:50%}}@media (min-width: 1024px){.x .c1-9l{justify-content:center}}@media (min-width: 1024px){.x .c1-9m > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9n{margin-top:0}}@media (min-width: 1024px){.x .c1-9o{margin-right:auto}}@media (min-width: 1024px){.x .c1-9p{margin-bottom:0}}@media (min-width: 1024px){.x .c1-an{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-99{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-9a{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-184596" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-184597" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-184598"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.184601.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-184597" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.184602.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-184597184600-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-184603" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184605.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184606.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="184607" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.184608.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184609.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184610.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184611.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184612.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184613.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184614.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184615.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184616.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184617.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184618.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184619.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184620.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184621.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184622.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184623.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184624.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184625.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184626.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184627.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184628.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.184629.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184630.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184631.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184632.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184633.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184634.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184635.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184636.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184637.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184638.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184639.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184640.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184641.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184642.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-184603-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.184643.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184644.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184645.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184646.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.184647.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="184648" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.184649.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-184604" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-184604" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184650.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-184604" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184651.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-184604" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184652.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-184604" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184653.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-184604" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184654.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-184604" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184655.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-184604" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184656.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-184604" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184657.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-184604" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184658.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-184604" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184659.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-184604" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184660.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-184604" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184661.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-184604" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184662.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-184604" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184663.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-184604" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184664.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-184604" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184665.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-184604" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184666.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-184604" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184667.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-184604" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184668.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-184604" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184669.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-184604" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184670.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-184604" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184671.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-184604" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184672.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-184604" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.184673.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-184604" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184674.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-184604" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184675.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-184604" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184676.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-184604" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184677.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-184604" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184678.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-184604" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184679.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-184604" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184680.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-184604" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184681.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-184604" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184682.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-184604" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184683.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-184604" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184684.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-184604" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184685.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-184604" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184686.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-184604" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.184687.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-184604" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184688.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-184604" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184689.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-184604" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184690.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-184604" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.184691.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.184692.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-184597" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="184693" aria-expanded="false" toggleId="n-184597-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.184694.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.184695.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-184597-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-184597-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-184597-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-184597-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184696.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184697.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="184698" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.184699.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184700.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184701.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184702.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184703.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184704.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184705.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184706.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184707.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184708.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184709.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184710.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184711.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184712.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184713.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184714.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184715.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184716.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184717.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184718.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184719.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.184720.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184721.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184722.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184723.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184724.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184725.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184726.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184727.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184728.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184729.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184730.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184731.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184732.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184733.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.184734.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184735.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184736.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184737.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.184738.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="d1f6a43d-fd4b-4814-87ab-cc2ea103672d" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="d1f6a43d-fd4b-4814-87ab-cc2ea103672d" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">1370-1380 François Paquin, Terrebonne, Québec, J6W 3Z8</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="3ed9a535-c61d-4b6a-89b3-55732c5d71ff" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="3ed9a535-c61d-4b6a-89b3-55732c5d71ff" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">APPARTEMENTS À LOUER</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_1370FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1370 FRANÇOIS PAQUIN</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_AUCUNEDISP" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">Aucune disponibilité</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s"></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-8t c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_1380FRANOI" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">1380 FRANÇOIS PAQUIN</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_212" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">2 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">800$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8u c1-8v c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM1_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM1_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">995$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8u c1-8v c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM1_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span>Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-91 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-92 c1-93 c1-94 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-95 c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="e97beb28-6259-4605-8bfd-6534882c9aad" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="e97beb28-6259-4605-8bfd-6534882c9aad" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9b c1-68 c1-b c1-c c1-d c1-9c c1-9d c1-9e c1-9f c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container184739" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9g c1-9h c1-9i c1-d c1-9j c1-9k c1-9l c1-9m c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9n c1-9o c1-9p c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-al c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8w c1-34 c1-4t c1-8x">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li>Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">1370 Rue François-Paquin, Terrebonne, Quebec J6W 3Z8, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-am c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Hicham Loutfy | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509646818" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184741.click,click">450-964-6818</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5142070483" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184742.click,click">514-207-0483</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4509649744" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184743.click,click">450-964-9744</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184744.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.184745.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-an c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184746.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ay c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded184740" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-az c1-h c1-i c1-b0 c1-7e c1-b1 c1-4 c1-3 c1-u c1-3b c1-b2 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b3 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184747" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-8t c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184747" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184748" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-8t c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184748" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input184749" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-8t c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input184749" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-8t c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184750.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.184751.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-90 c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.184752.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9g c1-9h c1-9i c1-by c1-bz c1-d c1-9j c1-9k c1-9l c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-as c1-at c1-au c1-b c1-4t c1-av c1-44 c1-aw c1-c8 c1-c9 c1-ca c1-ax c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b4 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-90 c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-90 c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184755.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184756.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184757.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184758.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184759.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.184760.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-8t c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.184761.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget184762" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget184762-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-aq c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8w c1-34 c1-4t c1-8x">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.184763.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget184762-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/e54e210698bfadd5/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/e53fa9326eeef12b/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
deleted
tests/fixtures/groupe_theoret/fc3a16b603faf21c3195.html
+0 −651
@@ -1,651 +0,0 @@ | ||
| 1 | −<!DOCTYPE html><html lang="fr-CA"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>100-110 Place Brosseau</title><meta name="author" content="Gestion Immobilière Groupe Théorêt"/><meta name="generator" content="Starfield Technologies; Go Daddy Website Builder 8.0.0000"/><link rel="manifest" href="/manifest.webmanifest"/><link rel="apple-touch-icon" sizes="57x57" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:57,h:57,m"/><link rel="apple-touch-icon" sizes="60x60" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:60,h:60,m"/><link rel="apple-touch-icon" sizes="72x72" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:72,h:72,m"/><link rel="apple-touch-icon" sizes="114x114" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:114,h:114,m"/><link rel="apple-touch-icon" sizes="120x120" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:120,h:120,m"/><link rel="apple-touch-icon" sizes="144x144" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:144,h:144,m"/><link rel="apple-touch-icon" sizes="152x152" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:152,h:152,m"/><link rel="apple-touch-icon" sizes="180x180" href="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:180,h:180,m"/><meta property="og:url" content="https://locationappartement.ca/100-110-place-brosseau"/> | |
| 2 | −<meta property="og:site_name" content="Gestion Immobilière Groupe Théorêt"/> | |
| 3 | −<meta property="og:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 4 | −<meta property="og:type" content="website"/> | |
| 5 | −<meta property="og:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 6 | −<meta property="og:locale" content="fr_CA"/> | |
| 7 | −<meta name="twitter:card" content="summary"/> | |
| 8 | −<meta name="twitter:title" content="Gestion Immobilière Groupe Théorêt"/> | |
| 9 | −<meta name="twitter:image" content="https://img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/frontpage.png"/> | |
| 10 | −<meta name="twitter:image:alt" content="Gestion Immobilière Groupe Théorêt"/> | |
| 11 | −<meta name="theme-color" content="#66A800"/><style data-inline-fonts>/* cyrillic-ext */ | |
| 12 | −@font-face { | |
| 13 | − font-family: 'Fjalla One'; | |
| 14 | − font-style: normal; | |
| 15 | − font-weight: 400; | |
| 16 | − font-display: swap; | |
| 17 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2'); | |
| 18 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 19 | −} | |
| 20 | −/* vietnamese */ | |
| 21 | −@font-face { | |
| 22 | − font-family: 'Fjalla One'; | |
| 23 | − font-style: normal; | |
| 24 | − font-weight: 400; | |
| 25 | − font-display: swap; | |
| 26 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO56kigt.woff2) format('woff2'); | |
| 27 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 28 | −} | |
| 29 | −/* latin-ext */ | |
| 30 | −@font-face { | |
| 31 | − font-family: 'Fjalla One'; | |
| 32 | − font-style: normal; | |
| 33 | − font-weight: 400; | |
| 34 | − font-display: swap; | |
| 35 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrO96kigt.woff2) format('woff2'); | |
| 36 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 37 | −} | |
| 38 | −/* latin */ | |
| 39 | −@font-face { | |
| 40 | − font-family: 'Fjalla One'; | |
| 41 | − font-style: normal; | |
| 42 | − font-weight: 400; | |
| 43 | − font-display: swap; | |
| 44 | − src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2'); | |
| 45 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 46 | −} | |
| 47 | − | |
| 48 | −/* cyrillic-ext */ | |
| 49 | −@font-face { | |
| 50 | − font-family: 'Source Sans Pro'; | |
| 51 | − font-style: italic; | |
| 52 | − font-weight: 300; | |
| 53 | − font-display: swap; | |
| 54 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2'); | |
| 55 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 56 | −} | |
| 57 | −/* cyrillic */ | |
| 58 | −@font-face { | |
| 59 | − font-family: 'Source Sans Pro'; | |
| 60 | − font-style: italic; | |
| 61 | − font-weight: 300; | |
| 62 | − font-display: swap; | |
| 63 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2'); | |
| 64 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 65 | −} | |
| 66 | −/* greek-ext */ | |
| 67 | −@font-face { | |
| 68 | − font-family: 'Source Sans Pro'; | |
| 69 | − font-style: italic; | |
| 70 | − font-weight: 300; | |
| 71 | − font-display: swap; | |
| 72 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2'); | |
| 73 | − unicode-range: U+1F00-1FFF; | |
| 74 | −} | |
| 75 | −/* greek */ | |
| 76 | −@font-face { | |
| 77 | − font-family: 'Source Sans Pro'; | |
| 78 | − font-style: italic; | |
| 79 | − font-weight: 300; | |
| 80 | − font-display: swap; | |
| 81 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2'); | |
| 82 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 83 | −} | |
| 84 | −/* vietnamese */ | |
| 85 | −@font-face { | |
| 86 | − font-family: 'Source Sans Pro'; | |
| 87 | − font-style: italic; | |
| 88 | − font-weight: 300; | |
| 89 | − font-display: swap; | |
| 90 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2'); | |
| 91 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 92 | −} | |
| 93 | −/* latin-ext */ | |
| 94 | −@font-face { | |
| 95 | − font-family: 'Source Sans Pro'; | |
| 96 | − font-style: italic; | |
| 97 | − font-weight: 300; | |
| 98 | − font-display: swap; | |
| 99 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2'); | |
| 100 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 101 | −} | |
| 102 | −/* latin */ | |
| 103 | −@font-face { | |
| 104 | − font-family: 'Source Sans Pro'; | |
| 105 | − font-style: italic; | |
| 106 | − font-weight: 300; | |
| 107 | − font-display: swap; | |
| 108 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2'); | |
| 109 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 110 | −} | |
| 111 | −/* cyrillic-ext */ | |
| 112 | −@font-face { | |
| 113 | − font-family: 'Source Sans Pro'; | |
| 114 | − font-style: italic; | |
| 115 | − font-weight: 400; | |
| 116 | − font-display: swap; | |
| 117 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2'); | |
| 118 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 119 | −} | |
| 120 | −/* cyrillic */ | |
| 121 | −@font-face { | |
| 122 | − font-family: 'Source Sans Pro'; | |
| 123 | − font-style: italic; | |
| 124 | − font-weight: 400; | |
| 125 | − font-display: swap; | |
| 126 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2'); | |
| 127 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 128 | −} | |
| 129 | −/* greek-ext */ | |
| 130 | −@font-face { | |
| 131 | − font-family: 'Source Sans Pro'; | |
| 132 | − font-style: italic; | |
| 133 | − font-weight: 400; | |
| 134 | − font-display: swap; | |
| 135 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2'); | |
| 136 | − unicode-range: U+1F00-1FFF; | |
| 137 | −} | |
| 138 | −/* greek */ | |
| 139 | −@font-face { | |
| 140 | − font-family: 'Source Sans Pro'; | |
| 141 | − font-style: italic; | |
| 142 | − font-weight: 400; | |
| 143 | − font-display: swap; | |
| 144 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); | |
| 145 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 146 | −} | |
| 147 | −/* vietnamese */ | |
| 148 | −@font-face { | |
| 149 | − font-family: 'Source Sans Pro'; | |
| 150 | − font-style: italic; | |
| 151 | − font-weight: 400; | |
| 152 | − font-display: swap; | |
| 153 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2'); | |
| 154 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 155 | −} | |
| 156 | −/* latin-ext */ | |
| 157 | −@font-face { | |
| 158 | − font-family: 'Source Sans Pro'; | |
| 159 | − font-style: italic; | |
| 160 | − font-weight: 400; | |
| 161 | − font-display: swap; | |
| 162 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); | |
| 163 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 164 | −} | |
| 165 | −/* latin */ | |
| 166 | −@font-face { | |
| 167 | − font-family: 'Source Sans Pro'; | |
| 168 | − font-style: italic; | |
| 169 | − font-weight: 400; | |
| 170 | − font-display: swap; | |
| 171 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2'); | |
| 172 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 173 | −} | |
| 174 | −/* cyrillic-ext */ | |
| 175 | −@font-face { | |
| 176 | − font-family: 'Source Sans Pro'; | |
| 177 | − font-style: italic; | |
| 178 | − font-weight: 700; | |
| 179 | − font-display: swap; | |
| 180 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2'); | |
| 181 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 182 | −} | |
| 183 | −/* cyrillic */ | |
| 184 | −@font-face { | |
| 185 | − font-family: 'Source Sans Pro'; | |
| 186 | − font-style: italic; | |
| 187 | − font-weight: 700; | |
| 188 | − font-display: swap; | |
| 189 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2'); | |
| 190 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 191 | −} | |
| 192 | −/* greek-ext */ | |
| 193 | −@font-face { | |
| 194 | − font-family: 'Source Sans Pro'; | |
| 195 | − font-style: italic; | |
| 196 | − font-weight: 700; | |
| 197 | − font-display: swap; | |
| 198 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2'); | |
| 199 | − unicode-range: U+1F00-1FFF; | |
| 200 | −} | |
| 201 | −/* greek */ | |
| 202 | −@font-face { | |
| 203 | − font-family: 'Source Sans Pro'; | |
| 204 | − font-style: italic; | |
| 205 | − font-weight: 700; | |
| 206 | − font-display: swap; | |
| 207 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2'); | |
| 208 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 209 | −} | |
| 210 | −/* vietnamese */ | |
| 211 | −@font-face { | |
| 212 | − font-family: 'Source Sans Pro'; | |
| 213 | − font-style: italic; | |
| 214 | − font-weight: 700; | |
| 215 | − font-display: swap; | |
| 216 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2'); | |
| 217 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 218 | −} | |
| 219 | −/* latin-ext */ | |
| 220 | −@font-face { | |
| 221 | − font-family: 'Source Sans Pro'; | |
| 222 | − font-style: italic; | |
| 223 | − font-weight: 700; | |
| 224 | − font-display: swap; | |
| 225 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2'); | |
| 226 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 227 | −} | |
| 228 | −/* latin */ | |
| 229 | −@font-face { | |
| 230 | − font-family: 'Source Sans Pro'; | |
| 231 | − font-style: italic; | |
| 232 | − font-weight: 700; | |
| 233 | − font-display: swap; | |
| 234 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2'); | |
| 235 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 236 | −} | |
| 237 | −/* cyrillic-ext */ | |
| 238 | −@font-face { | |
| 239 | − font-family: 'Source Sans Pro'; | |
| 240 | − font-style: normal; | |
| 241 | − font-weight: 300; | |
| 242 | − font-display: swap; | |
| 243 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2'); | |
| 244 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 245 | −} | |
| 246 | −/* cyrillic */ | |
| 247 | −@font-face { | |
| 248 | − font-family: 'Source Sans Pro'; | |
| 249 | − font-style: normal; | |
| 250 | − font-weight: 300; | |
| 251 | − font-display: swap; | |
| 252 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2'); | |
| 253 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 254 | −} | |
| 255 | −/* greek-ext */ | |
| 256 | −@font-face { | |
| 257 | − font-family: 'Source Sans Pro'; | |
| 258 | − font-style: normal; | |
| 259 | − font-weight: 300; | |
| 260 | − font-display: swap; | |
| 261 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2'); | |
| 262 | − unicode-range: U+1F00-1FFF; | |
| 263 | −} | |
| 264 | −/* greek */ | |
| 265 | −@font-face { | |
| 266 | − font-family: 'Source Sans Pro'; | |
| 267 | − font-style: normal; | |
| 268 | − font-weight: 300; | |
| 269 | − font-display: swap; | |
| 270 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2'); | |
| 271 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 272 | −} | |
| 273 | −/* vietnamese */ | |
| 274 | −@font-face { | |
| 275 | − font-family: 'Source Sans Pro'; | |
| 276 | − font-style: normal; | |
| 277 | − font-weight: 300; | |
| 278 | − font-display: swap; | |
| 279 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2'); | |
| 280 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 281 | −} | |
| 282 | −/* latin-ext */ | |
| 283 | −@font-face { | |
| 284 | − font-family: 'Source Sans Pro'; | |
| 285 | − font-style: normal; | |
| 286 | − font-weight: 300; | |
| 287 | − font-display: swap; | |
| 288 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2'); | |
| 289 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 290 | −} | |
| 291 | −/* latin */ | |
| 292 | −@font-face { | |
| 293 | − font-family: 'Source Sans Pro'; | |
| 294 | − font-style: normal; | |
| 295 | − font-weight: 300; | |
| 296 | − font-display: swap; | |
| 297 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2'); | |
| 298 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 299 | −} | |
| 300 | −/* cyrillic-ext */ | |
| 301 | −@font-face { | |
| 302 | − font-family: 'Source Sans Pro'; | |
| 303 | − font-style: normal; | |
| 304 | − font-weight: 400; | |
| 305 | − font-display: swap; | |
| 306 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2'); | |
| 307 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 308 | −} | |
| 309 | −/* cyrillic */ | |
| 310 | −@font-face { | |
| 311 | − font-family: 'Source Sans Pro'; | |
| 312 | − font-style: normal; | |
| 313 | − font-weight: 400; | |
| 314 | − font-display: swap; | |
| 315 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2'); | |
| 316 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 317 | −} | |
| 318 | −/* greek-ext */ | |
| 319 | −@font-face { | |
| 320 | − font-family: 'Source Sans Pro'; | |
| 321 | − font-style: normal; | |
| 322 | − font-weight: 400; | |
| 323 | − font-display: swap; | |
| 324 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2'); | |
| 325 | − unicode-range: U+1F00-1FFF; | |
| 326 | −} | |
| 327 | −/* greek */ | |
| 328 | −@font-face { | |
| 329 | − font-family: 'Source Sans Pro'; | |
| 330 | − font-style: normal; | |
| 331 | − font-weight: 400; | |
| 332 | − font-display: swap; | |
| 333 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); | |
| 334 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 335 | −} | |
| 336 | −/* vietnamese */ | |
| 337 | −@font-face { | |
| 338 | − font-family: 'Source Sans Pro'; | |
| 339 | − font-style: normal; | |
| 340 | − font-weight: 400; | |
| 341 | − font-display: swap; | |
| 342 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2'); | |
| 343 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 344 | −} | |
| 345 | −/* latin-ext */ | |
| 346 | −@font-face { | |
| 347 | − font-family: 'Source Sans Pro'; | |
| 348 | − font-style: normal; | |
| 349 | − font-weight: 400; | |
| 350 | − font-display: swap; | |
| 351 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); | |
| 352 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 353 | −} | |
| 354 | −/* latin */ | |
| 355 | −@font-face { | |
| 356 | − font-family: 'Source Sans Pro'; | |
| 357 | − font-style: normal; | |
| 358 | − font-weight: 400; | |
| 359 | − font-display: swap; | |
| 360 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2'); | |
| 361 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 362 | −} | |
| 363 | −/* cyrillic-ext */ | |
| 364 | −@font-face { | |
| 365 | − font-family: 'Source Sans Pro'; | |
| 366 | − font-style: normal; | |
| 367 | − font-weight: 700; | |
| 368 | − font-display: swap; | |
| 369 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2'); | |
| 370 | − unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 371 | −} | |
| 372 | −/* cyrillic */ | |
| 373 | −@font-face { | |
| 374 | − font-family: 'Source Sans Pro'; | |
| 375 | − font-style: normal; | |
| 376 | − font-weight: 700; | |
| 377 | − font-display: swap; | |
| 378 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2'); | |
| 379 | − unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 380 | −} | |
| 381 | −/* greek-ext */ | |
| 382 | −@font-face { | |
| 383 | − font-family: 'Source Sans Pro'; | |
| 384 | − font-style: normal; | |
| 385 | − font-weight: 700; | |
| 386 | − font-display: swap; | |
| 387 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2'); | |
| 388 | − unicode-range: U+1F00-1FFF; | |
| 389 | −} | |
| 390 | −/* greek */ | |
| 391 | −@font-face { | |
| 392 | − font-family: 'Source Sans Pro'; | |
| 393 | − font-style: normal; | |
| 394 | − font-weight: 700; | |
| 395 | − font-display: swap; | |
| 396 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2'); | |
| 397 | − unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; | |
| 398 | −} | |
| 399 | −/* vietnamese */ | |
| 400 | −@font-face { | |
| 401 | − font-family: 'Source Sans Pro'; | |
| 402 | − font-style: normal; | |
| 403 | − font-weight: 700; | |
| 404 | − font-display: swap; | |
| 405 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2'); | |
| 406 | − unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 407 | −} | |
| 408 | −/* latin-ext */ | |
| 409 | −@font-face { | |
| 410 | − font-family: 'Source Sans Pro'; | |
| 411 | − font-style: normal; | |
| 412 | − font-weight: 700; | |
| 413 | − font-display: swap; | |
| 414 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2'); | |
| 415 | − unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 416 | −} | |
| 417 | −/* latin */ | |
| 418 | −@font-face { | |
| 419 | − font-family: 'Source Sans Pro'; | |
| 420 | − font-style: normal; | |
| 421 | − font-weight: 700; | |
| 422 | − font-display: swap; | |
| 423 | − src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2'); | |
| 424 | − unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 425 | −} | |
| 426 | −</style><style>.x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-input,.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}} | |
| 427 | − | |
| 428 | −</style> | |
| 429 | −<style>/* | |
| 430 | −Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com eben@eyebytes.com), with Reserved Font Name "Fjalla" | |
| 431 | − | |
| 432 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 433 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 434 | − | |
| 435 | −—————————————————————————————- | |
| 436 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 437 | −—————————————————————————————- | |
| 438 | −*/ | |
| 439 | − | |
| 440 | −/* | |
| 441 | −Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. | |
| 442 | − | |
| 443 | −This Font Software is licensed under the SIL Open Font License, Version 1.1. | |
| 444 | −This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL | |
| 445 | − | |
| 446 | −—————————————————————————————- | |
| 447 | −SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | |
| 448 | −—————————————————————————————- | |
| 449 | −*/ | |
| 450 | −</style> | |
| 451 | −<style data-glamor="cxs-default-sheet">.x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Source Sans Pro', arial, sans-serif}.x .c1-c{font-size:16px}.x .c1-h{padding-top:56px}.x .c1-i{padding-bottom:56px}.x .c1-j{overflow:visible}.x .c1-k{padding:0px !important}.x .c1-n{display:none}.x .c1-p{margin-left:auto}.x .c1-q{margin-right:auto}.x .c1-r{padding-left:24px}.x .c1-s{padding-right:24px}.x .c1-t{max-width:100%}.x .c1-u{display:flex}.x .c1-v{flex-direction:row}.x .c1-w{align-items:center}.x .c1-x{justify-content:space-between}.x .c1-y{padding-top:24px}.x .c1-z{padding-bottom:24px}.x .c1-14{display:inline-block}.x .c1-15{font-family:'Fjalla One', arial, sans-serif}.x .c1-16{text-align:left}.x .c1-17{flex-basis:50%}.x .c1-1c{letter-spacing:inherit}.x .c1-1d{text-transform:inherit}.x .c1-1e{text-decoration:none}.x .c1-1f{word-wrap:break-word}.x .c1-1g{overflow-wrap:break-word}.x .c1-1h{display:inline}.x .c1-1i{cursor:pointer}.x .c1-1j{border-top:0px}.x .c1-1k{border-right:0px}.x .c1-1l{border-bottom:0px}.x .c1-1m{border-left:0px}.x .c1-1n{width:auto}.x .c1-1o{color:rgb(79, 130, 0)}.x .c1-1p{font-weight:inherit}.x .c1-1q:hover{color:rgb(46, 80, 0)}.x .c1-1r:active{color:rgb(30, 55, 0)}.x .c1-1s{padding-top:0px}.x .c1-1t{padding-right:0px}.x .c1-1u{padding-bottom:0px}.x .c1-1v{padding-left:0px}.x .c1-1w{[object -object]:0px}.x .c1-1y{margin-top:0}.x .c1-1z{margin-bottom:0}.x .c1-20{vertical-align:middle}.x .c1-21{aspect-ratio:1.6987179487179487 / 1}.x .c1-22{object-fit:contain}.x .c1-23{height:80px}.x .c1-24{transition:max-height .5s}.x .c1-25{padding-top:8px}.x .c1-26{padding-right:8px}.x .c1-27{padding-bottom:8px}.x .c1-28{padding-left:8px}.x .c1-29{border-radius:0px}.x .c1-2s{justify-content:flex-end}.x .c1-2t{line-height:1.5}.x .c1-2u{text-wrap:pretty}.x .c1-2v a{text-decoration:none}.x .c1-2w{text-align:right}.x .c1-2x{color:rgb(27, 27, 27)}.x .c1-2y{font-size:28px}.x .c1-2z{font-weight:400}.x .c1-34{color:inherit}.x .c1-35:hover{color:currentColor}.x .c1-36:active{color:currentColor}.x .c1-37{padding-top:16px}.x .c1-38{padding-bottom:16px}.x .c1-39{background-color:rgb(246, 246, 246)}.x .c1-3a{position:relative}.x .c1-3b{justify-content:center}.x .c1-3c{max-width:none}.x .c1-3d{line-height:24px}.x .c1-3e{margin-left:0}.x .c1-3f{margin-right:0}.x .c1-3g{-webkit-margin-before:0}.x .c1-3h{-webkit-margin-after:0}.x .c1-3i{-webkit-padding-start:0}.x .c1-3j{color:rgb(87, 87, 87)}.x .c1-3k{margin-bottom:none}.x .c1-3l{list-style:none}.x .c1-3m{vertical-align:top}.x .c1-3n{padding-left:32px}.x .c1-3o{white-space:nowrap}.x .c1-3p{visibility:hidden}.x .c1-3q:first-child{margin-left:0}.x .c1-3r:first-child{padding-left:0}.x .c1-3s{letter-spacing:0.143em}.x .c1-3t{text-transform:uppercase}.x .c1-3u{display:block}.x .c1-3v{margin-left:-6px}.x .c1-3w{margin-right:-6px}.x .c1-3x{margin-top:-6px}.x .c1-3y{margin-bottom:-6px}.x .c1-3z{padding-left:6px}.x .c1-40{padding-right:6px}.x .c1-41{padding-top:6px}.x .c1-42{padding-bottom:6px}.x .c1-43{color:rgb(21, 21, 21)}.x .c1-44{font-size:14px}.x .c1-45:hover{color:rgb(41, 72, 0)}.x .c1-46:active{color:rgb(76, 125, 0)}.x .c1-4b{transition:transform .33s ease-in-out}.x .c1-4c{transform:rotate(0deg)}.x .c1-4d{padding-left:16px}.x .c1-4e{padding-right:16px}.x .c1-4f{border-radius:4px}.x .c1-4g{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-4h{position:absolute}.x .c1-4i{top:32px}.x .c1-4j{max-height:45vh}.x .c1-4k{overflow-y:auto}.x .c1-4l{z-index:1003}.x .c1-4o{color:rgb(94, 94, 94)}.x .c1-4p:last-child{margin-bottom:0}.x .c1-4q{padding-top:4px}.x .c1-4r{padding-bottom:4px}.x .c1-4s:active{color:rgb(79, 130, 0)}.x .c1-4t{font-weight:700}.x .c1-4u{right:0px}.x .c1-4v{margin-top:8px}.x .c1-4w{margin-bottom:8px}.x .c1-4x{cursor:default}.x .c1-4y{margin-left:24px}.x .c1-50{flex-direction:column}.x .c1-51{flex-grow:1}.x .c1-52{flex-basis:100%}.x .c1-57{box-sizing:border-box}.x .c1-58{flex-wrap:nowrap}.x .c1-59{margin-right:-0px}.x .c1-5a{margin-bottom:-0px}.x .c1-5b{margin-left:-0px}.x .c1-5c{justify-content:flex-start}.x .c1-5h{flex-shrink:0}.x .c1-5i{flex-basis:10%}.x .c1-5j{max-width:10%}.x .c1-5k{padding-right:0px}.x .c1-5l{padding-bottom:0px}.x .c1-5m{padding-left:0px}.x .c1-5r:hover{color:rgb(76, 125, 0)}.x .c1-5s:active{color:rgb(25, 48, 0)}.x .c1-5t{flex-shrink:1}.x .c1-5u{flex-basis:80%}.x .c1-5v{max-width:80%}.x .c1-5w{margin-left:8px}.x .c1-5x{margin-right:8px}.x .c1-5y{text-align:center}.x .c1-5z{position:fixed}.x .c1-60{top:0px}.x .c1-61{height:100%}.x .c1-62{z-index:10002}.x .c1-63{-webkit-overflow-scrolling:touch}.x .c1-64{transform:translateX(-249vw)}.x .c1-65{overscroll-behavior:contain}.x .c1-66{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-67{transition:transform .3s ease-in-out}.x .c1-68{overflow:hidden}.x .c1-69{line-height:1.3em}.x .c1-6a{font-style:normal}.x .c1-6b{top:15px}.x .c1-6c{right:15px}.x .c1-6d:hover{color:rgb(79, 130, 0)}.x .c1-6e{overflow-x:hidden}.x .c1-6f{overscroll-behavior:none}.x .c1-6g{margin-bottom:32px}.x .c1-6h > :not(:first-child){margin-top:16px}.x .c1-6i{border-color:rgba(185, 185, 185, 0.5)}.x .c1-6j{border-bottom-width:1px}.x .c1-6k{border-bottom-style:solid}.x .c1-6l:last-child{border-bottom:0}.x .c1-6m{min-width:200px}.x .c1-6n{font-size:22px}.x .c1-6t{pointer-events:none}.x .c1-6u{border-bottom-width:0}.x .c1-6v:last-child{padding-bottom:24px}.x .c1-6w{padding-left:40px}.x .c1-6x{background-color:transparent}.x .c1-6y{padding-bottom:0px !important}.x .c1-70{line-height:1.4}.x .c1-71{margin-bottom:40px}.x .c1-74{font-size:unset}.x .c1-75{font-family:unset}.x .c1-76{letter-spacing:unset}.x .c1-77{text-transform:unset}.x .c1-78{line-height:0px}.x .c1-79{border-color:rgb(226, 226, 226)}.x .c1-7a{border-bottom-width:2px}.x .c1-7b{border-style:solid}.x .c1-7c{margin-top:24px}.x .c1-7d{width:50px}.x .c1-7e{opacity:0}.x .c1-7f{transition:opacity 0.5s}.x .c1-7g:hover{opacity:1}.x .c1-7h{left:0px}.x .c1-7i{outline:none}.x .c1-7j{color:rgb(255, 255, 255)}.x .c1-7k{transform:translateY(-50%)}.x .c1-7l{z-index:1}.x .c1-7m{background-color:rgba(22, 22, 22, 0.25)}.x .c1-7n{margin-top:300px}.x .c1-7o:hover{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7p:active{background-color:rgba(22, 22, 22, 0.5)}.x .c1-7u{right:0px}.x .c1-7v{font-size:32px}.x .c1-7w{color:rgb(96, 158, 0)}.x .c1-81{border-color:rgb(218, 218, 218)}.x .c1-82{flex-wrap:wrap}.x .c1-83{margin-right:-12px}.x .c1-84{margin-bottom:-24px}.x .c1-85{margin-left:-12px}.x .c1-86{padding-right:12px}.x .c1-87{padding-left:12px}.x .c1-8b{margin-bottom:24px}.x .c1-8e{line-height:1.25}.x .c1-8f{-moz-column-gap:40px}.x .c1-8g{-webkit-column-gap:40px}.x .c1-8h{column-gap:40px}.x .c1-8i{-webkit-column-break-inside:avoid}.x .c1-8j{break-inside:avoid-column}.x .c1-8k{display:table}.x .c1-8o{line-height:1}.x .c1-8v{font-size:inherit !important}.x .c1-8w{line-height:inherit}.x .c1-8x{font-style:italic}.x .c1-8y{text-decoration:line-through}.x .c1-8z{text-decoration:underline}.x .c1-90{border-bottom-width:1px}.x .c1-91{margin-top:32px}.x .c1-92{flex-basis:83.33333333333334%}.x .c1-93{max-width:83.33333333333334%}.x .c1-94{margin-left:8.333333333333332%}.x .c1-95{color:rgb(82, 82, 82)}.x .c1-96{font-size:12px}.x .c1-9b{min-height:300px}.x .c1-9q > p > ol{text-align:left}.x .c1-9r > p > ol{display:block}.x .c1-9s > p > ol{padding-left:1.3em}.x .c1-9t > p > ol{margin-left:16px}.x .c1-9u > p > ol{margin-right:16px}.x .c1-9v > p > ol{margin-top:auto}.x .c1-9w > p > ol{margin-bottom:auto}.x .c1-9x > p > ol{text-wrap:pretty}.x .c1-9y > p > ul{text-align:left}.x .c1-9z > p > ul{display:block}.x .c1-a0 > p > ul{padding-left:1.3em}.x .c1-a1 > p > ul{margin-left:16px}.x .c1-a2 > p > ul{margin-right:16px}.x .c1-a3 > p > ul{margin-top:auto}.x .c1-a4 > p > ul{margin-bottom:auto}.x .c1-a5 > p > ul{text-wrap:pretty}.x .c1-a6 > ul{text-align:left}.x .c1-a7 > ul{display:block}.x .c1-a8 > ul{padding-left:1.3em}.x .c1-a9 > ul{margin-left:16px}.x .c1-aa > ul{margin-right:16px}.x .c1-ab > ul{margin-top:auto}.x .c1-ac > ul{margin-bottom:auto}.x .c1-ad > ul{text-wrap:pretty}.x .c1-ae > ol{text-align:left}.x .c1-af > ol{display:block}.x .c1-ag > ol{padding-left:1.3em}.x .c1-ah > ol{margin-left:16px}.x .c1-ai > ol{margin-right:16px}.x .c1-aj > ol{margin-top:auto}.x .c1-ak > ol{margin-bottom:auto}.x .c1-al > ol{text-wrap:pretty}.x .c1-am{white-space:pre-line}.x .c1-ao{border-style:none}.x .c1-ap{display:inline-flex}.x .c1-aq{padding-right:32px}.x .c1-ar{min-height:56px}.x .c1-as{border-radius:4px}.x .c1-at{color:rgb(0, 0, 0)}.x .c1-au{background-color:rgb(102, 168, 0)}.x .c1-av{text-shadow:none}.x .c1-aw:hover{background-color:rgb(121, 197, 0)}.x .c1-ay{height:inherit}.x .c1-az{z-index:2}.x .c1-b0{transform:translate3d(-120%,0,0)}.x .c1-b1{transition:transform .8s ease, opacity .1s}.x .c1-b2{align-items:flex-start}.x .c1-b3{max-width:600px}.x .c1-b4{border-top-width:1px}.x .c1-b5{border-right-width:1px}.x .c1-b6{border-left-width:1px}.x .c1-b7{padding-top:23px}.x .c1-b8{padding-bottom:7px}.x .c1-b9{color:rgb(71, 71, 71)}.x .c1-ba::placeholder{color:inherit}.x .c1-bb:focus{outline:none}.x .c1-bc:focus{box-shadow:inset 0 0 0 1px currentColor}.x .c1-bd:focus + label{font-size:12px}.x .c1-be:focus + label{top:8px}.x .c1-bf:focus + label{color:rgb(79, 130, 0)}.x .c1-bg:not([value=""]) + label{font-size:12px}.x .c1-bh:not([value=""]) + label{top:8px}.x .c1-bi:not([value=""]) + label{color:rgb(79, 130, 0)}.x .c1-bj::-webkit-input-placeholder{color:inherit}.x .c1-bl{top:33%}.x .c1-bm{left:16px}.x .c1-bn{transition:all .15s ease}.x .c1-bo{resize:vertical}.x .c1-bp{color:rgb(89, 89, 89)}.x .c1-bq{width:fit-content}.x .c1-br:hover{cursor:pointer}.x .c1-bu{min-height:inherit}.x .c1-bv > *{flex-grow:1}.x .c1-bw > *{min-height:inherit}.x .c1-bx{order:initial}.x .c1-c2{bottom:0px}.x .c1-c3{position:absolute !important}.x .c1-c4{transform:translate3d(0,0,0)}.x .c1-c5{left:56px}.x .c1-c6{top:8px}.x .c1-c7{min-height:40px}.x .c1-cb{margin-left:-4px}.x .c1-cc{width:18px}.x .c1-cd{height:18px}.x .c1-ce{top:50%}.x .c1-cf{right:auto}.x .c1-cg{line-height:0}.x .c1-ch > img{display:block}.x .c1-ci{margin-left:calc(18px + 8px)}.x .c1-cj{border-top-style:solid}.x .c1-ck{color:rgb(76, 125, 0)}.x .c1-cl{list-style-type:none}.x .c1-cp{padding-top:40px}.x .c1-cq{margin-bottom:4px}.x .c1-cr{z-index:10003}.x .c1-cs{background-color:rgba(0, 0, 0, 0.6)}.x .c1-d7{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}.x .c1-d8{max-height:90vh}.x .c1-d9{height:max-content}.x .c1-da{border-radius:12px}.x .c1-db{max-width:515px}.x .c1-dr{padding-right:4px}.x .c1-ds{padding-left:4px}.x .c1-dt{border-radius:50%}.x .c1-du{height:22px}.x .c1-dv{width:22px}.x .c1-dw{align-self:center}.x .c1-dx{height:auto}.x .c1-dy > *:not(:last-child){margin-bottom:0px}.x .c1-e1 > *:not(:last-child){margin-bottom:16px}.x .c1-e2{padding-top:32px}.x .c1-e3{padding-bottom:32px}</style> | |
| 452 | −<style data-glamor="cxs-xs-sheet">@media (max-width: 767px){.x .c1-l{padding-top:40px}}@media (max-width: 767px){.x .c1-m{padding-bottom:40px}}@media (max-width: 767px){.x .c1-18{width:100%}}@media (max-width: 767px){.x .c1-19{display:flex}}@media (max-width: 767px){.x .c1-1a{justify-content:center}}@media (max-width: 767px){.x .c1-2a{max-width:224px}}@media (max-width: 767px){.x .c1-2b{display:block}}@media (max-width: 767px){.x .c1-2c{max-height:110px}}@media (max-width: 767px){.x .c1-2d{margin-top:0}}@media (max-width: 767px){.x .c1-2e{margin-right:auto}}@media (max-width: 767px){.x .c1-2f{margin-bottom:0}}@media (max-width: 767px){.x .c1-2g{margin-left:auto}}@media (max-width: 767px){.x .c1-2h{height:200px}}@media (max-width: 767px){.x .c1-2i{width:auto}}@media (max-width: 767px){.x .c1-53{max-height:80px}}@media (max-width: 767px){.x .c1-54{height:104px}}@media (max-width: 767px){.x .c1-6z{padding-bottom:0px !important}}@media (max-width: 767px){.x .c1-bk{font-size:16px}}@media (max-width: 767px){.x .c1-bs{margin-top:24px}}@media (max-width: 767px){.x .c1-by{order:-1}}@media (max-width: 767px){.x .c1-c8{font-size:12px}}@media (max-width: 767px){.x .c1-c9{left:8px}}@media (max-width: 767px){.x .c1-ca{max-width:90%}}@media (max-width: 767px){.x .c1-cm{flex-direction:column}}@media (max-width: 767px){.x .c1-cn{padding-top:4px}}@media (max-width: 767px){.x .c1-co{padding-bottom:4px}}@media (max-width: 767px){.x .c1-dc{position:relative}}@media (max-width: 767px){.x .c1-dd{background-color:rgb(255, 255, 255)}}@media (max-width: 767px){.x .c1-de{box-shadow:0 4px 12px 0 rgba(117,117,117,0.4)}}@media (max-width: 767px){.x .c1-df{padding-bottom:16px}}@media (max-width: 767px){.x .c1-dg{max-height:90vh}}@media (max-width: 767px){.x .c1-dh{border-radius:12px}}@media (max-width: 767px){.x .c1-di{margin-top:16px}}@media (max-width: 767px){.x .c1-dj{margin-right:16px}}@media (max-width: 767px){.x .c1-dk{margin-bottom:16px}}@media (max-width: 767px){.x .c1-dl{margin-left:16px}}@media (max-width: 767px){.x .c1-dm{max-width:90vw}}</style> | |
| 453 | −<style data-glamor="cxs-sm-sheet">@media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-10{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-1b{width:100%}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2j{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2k{max-height:80px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2l{margin-top:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2m{margin-right:auto}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2n{margin-bottom:0}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-2o{margin-left:auto}}@media (min-width: 768px){.x .c1-30{font-size:30px}}@media (min-width: 768px){.x .c1-47{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-4n{right:0px}}@media (min-width: 768px){.x .c1-5d{margin-top:0}}@media (min-width: 768px){.x .c1-5e{margin-right:-24px}}@media (min-width: 768px){.x .c1-5f{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-5g{margin-left:-24px}}@media (min-width: 768px){.x .c1-5n{padding-top:0}}@media (min-width: 768px){.x .c1-5o{padding-right:24px}}@media (min-width: 768px){.x .c1-5p{padding-bottom:48px}}@media (min-width: 768px){.x .c1-5q{padding-left:24px}}@media (min-width: 768px){.x .c1-6o{font-size:22px}}@media (min-width: 768px){.x .c1-7x{font-size:38px}}@media (min-width: 768px){.x .c1-88{margin-left:16.666666666666664%}}@media (min-width: 768px){.x .c1-89{flex-basis:66.66666666666666%}}@media (min-width: 768px){.x .c1-8a{max-width:66.66666666666666%}}@media (min-width: 768px){.x .c1-8c{margin-bottom:0}}@media (min-width: 768px){.x .c1-8d{padding-bottom:0}}@media (min-width: 768px){.x .c1-8l{flex-direction:row}}@media (min-width: 768px){.x .c1-8m{min-width:0}}@media (min-width: 768px){.x .c1-8n{max-width:65%}}@media (min-width: 768px){.x .c1-8p{max-width:25%}}@media (min-width: 768px){.x .c1-8q{text-align:right}}@media (min-width: 768px){.x .c1-8r{margin-right:0}}@media (min-width: 768px){.x .c1-8s{margin-left:0}}@media (min-width: 768px){.x .c1-8t{flex-basis:75%}}@media (min-width: 768px){.x .c1-8u{max-width:75%}}@media (min-width: 768px){.x .c1-97{font-size:12px}}@media (min-width: 768px){.x .c1-ax{width:auto}}@media (min-width: 768px){.x .c1-bt{margin-left:16px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-bz{order:-1}}@media (min-width: 768px){.x .c1-ct{position:absolute}}@media (min-width: 768px){.x .c1-cu{transform:none}}@media (min-width: 768px){.x .c1-cv{max-width:600px}}@media (min-width: 768px){.x .c1-cw{margin-top:24px}}@media (min-width: 768px){.x .c1-cx{margin-bottom:24px}}@media (min-width: 768px){.x .c1-cy{margin-left:auto}}@media (min-width: 768px){.x .c1-cz{margin-right:auto}}@media (min-width: 768px){.x .c1-d0{display:flex}}@media (min-width: 768px){.x .c1-d1{align-items:center}}@media (min-width: 768px){.x .c1-d2{pointer-events:none}}@media (min-width: 768px){.x .c1-d3{justify-content:center}}@media (min-width: 768px){.x .c1-d4:before{display:block}}@media (min-width: 768px){.x .c1-d5:before{height:90vh}}@media (min-width: 768px){.x .c1-d6:before{content:""}}@media (min-width: 768px){.x .c1-dn{pointer-events:auto}}@media (min-width: 768px){.x .c1-do{border-radius:12px}}@media (min-width: 768px){.x .c1-dp{max-width:515px}}@media (min-width: 768px){.x .c1-dz{padding-left:0px}}@media (min-width: 768px){.x .c1-e0{padding-right:0px}}</style> | |
| 454 | −<style data-glamor="cxs-md-sheet">@media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-o{display:block}}@media (min-width: 1024px){.x .c1-11{width:984px}}@media (min-width: 1024px){.x .c1-1x{display:inline-block}}@media (min-width: 1024px){.x .c1-2p{height:200px}}@media (min-width: 1024px){.x .c1-2q{width:auto}}@media (min-width: 1024px){.x .c1-2r{max-height:200px}}@media (min-width: 1024px){.x .c1-31{font-size:30px}}@media (min-width: 1024px){.x .c1-48{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-4m{right:0px}}@media (min-width: 1024px){.x .c1-4z{display:none}}@media (min-width: 1024px){.x .c1-55{height:104px}}@media (min-width: 1024px){.x .c1-56{max-height:104px}}@media (min-width: 1024px){.x .c1-6p{min-width:300px}}@media (min-width: 1024px){.x .c1-6q{font-size:22px}}@media (min-width: 1024px){.x .c1-72{text-align:center}}@media (min-width: 1024px){.x .c1-73{margin-left:auto}}@media (min-width: 1024px){.x .c1-7q{padding-top:8px}}@media (min-width: 1024px){.x .c1-7r{padding-bottom:8px}}@media (min-width: 1024px){.x .c1-7s{padding-left:4px}}@media (min-width: 1024px){.x .c1-7t{padding-right:4px}}@media (min-width: 1024px){.x .c1-7y{font-size:38px}}@media (min-width: 1024px){.x .c1-98{font-size:12px}}@media (min-width: 1024px){.x .c1-9c{flex-wrap:nowrap}}@media (min-width: 1024px){.x .c1-9d{flex-direction:row}}@media (min-width: 1024px){.x .c1-9e{overflow-y:hidden}}@media (min-width: 1024px){.x .c1-9f{min-height:0px}}@media (min-width: 1024px){.x .c1-9g:only-child{flex-basis:100%}}@media (min-width: 1024px){.x .c1-9h:only-child{max-width:100%}}@media (min-width: 1024px){.x .c1-9i:only-child > *{max-width:100%}}@media (min-width: 1024px){.x .c1-9j{flex-basis:50%}}@media (min-width: 1024px){.x .c1-9k{max-width:50%}}@media (min-width: 1024px){.x .c1-9l{justify-content:center}}@media (min-width: 1024px){.x .c1-9m > *{max-width:70%}}@media (min-width: 1024px){.x .c1-9n{margin-top:0}}@media (min-width: 1024px){.x .c1-9o{margin-right:auto}}@media (min-width: 1024px){.x .c1-9p{margin-bottom:0}}@media (min-width: 1024px){.x .c1-an{position:static}}@media (min-width: 1024px){.x .c1-c0 > *{max-width:100%}}@media (min-width: 1024px){.x .c1-c1 > *{width:100%}}@media (min-width: 1024px){.x .c1-dq{max-width:515px}}</style> | |
| 455 | −<style data-glamor="cxs-lg-sheet">@media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-12{width:1160px}}@media (min-width: 1280px){.x .c1-32{font-size:32px}}@media (min-width: 1280px){.x .c1-49{font-size:14px}}@media (min-width: 1280px){.x .c1-6r{font-size:22px}}@media (min-width: 1280px){.x .c1-7z{font-size:44px}}@media (min-width: 1280px){.x .c1-99{font-size:12px}}</style> | |
| 456 | −<style data-glamor="cxs-xl-sheet">@media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-13{width:1280px}}@media (min-width: 1536px){.x .c1-33{font-size:36px}}@media (min-width: 1536px){.x .c1-4a{font-size:16px}}@media (min-width: 1536px){.x .c1-6s{font-size:24px}}@media (min-width: 1536px){.x .c1-80{font-size:48px}}@media (min-width: 1536px){.x .c1-9a{font-size:14px}}</style> | |
| 457 | −<style>@keyframes opacity-bounce { | |
| 458 | − 0% {opacity: 0;transform: translateY(100%); } | |
| 459 | − 60% { transform: translateY(-20%); } | |
| 460 | − 100% { opacity: 1; transform: translateY(0); } | |
| 461 | − }</style> | |
| 462 | −<style>.gd-ad-flex-parent { | |
| 463 | − animation-name: opacity-bounce; | |
| 464 | − animation-duration: 800ms; | |
| 465 | − animation-delay: 400ms; | |
| 466 | − animation-fill-mode: forwards; | |
| 467 | − animation-timing-function: ease; | |
| 468 | − opacity: 0;</style> | |
| 469 | −<style id="carousel-stylesheet">.carousel { | |
| 470 | − text-align: center; | |
| 471 | − position: relative; | |
| 472 | − opacity: 0; | |
| 473 | − margin: 0 auto; | |
| 474 | − transition: opacity 0.5s; | |
| 475 | −} | |
| 476 | −.carousel .carousel-container-inner { | |
| 477 | − margin: 0 auto; | |
| 478 | − position: relative; | |
| 479 | −} | |
| 480 | −.carousel .carousel-viewport { | |
| 481 | − overflow: hidden; | |
| 482 | − white-space: nowrap; | |
| 483 | − text-align: left; | |
| 484 | −} | |
| 485 | −.carousel .carousel-arrow-default { | |
| 486 | − border: 3px solid !important; | |
| 487 | − border-radius: 50%; | |
| 488 | − color: rgba(255, 255, 255, 0.9); | |
| 489 | − height: 32px; | |
| 490 | − width: 32px; | |
| 491 | − font-weight: 900; | |
| 492 | − background: rgba(0, 0, 0, 0.15); | |
| 493 | −} | |
| 494 | −.carousel .carousel-arrow { | |
| 495 | − position: absolute; | |
| 496 | − z-index: 1; | |
| 497 | − bottom: 23px; | |
| 498 | − padding: 0; | |
| 499 | − cursor: pointer; | |
| 500 | − border: none; | |
| 501 | −} | |
| 502 | −.carousel .carousel-arrow:focus { | |
| 503 | − outline: none; | |
| 504 | −} | |
| 505 | −.carousel .carousel-arrow:before { | |
| 506 | − font-size: 19px; | |
| 507 | − display: block; | |
| 508 | − margin-top: -2px; | |
| 509 | −} | |
| 510 | −.carousel .carousel-arrow:disabled { | |
| 511 | − cursor: not-allowed; | |
| 512 | − opacity: 0.5; | |
| 513 | −} | |
| 514 | −.carousel .carousel-left-arrow { | |
| 515 | − left: 23px; | |
| 516 | −} | |
| 517 | −.carousel .carousel-right-arrow { | |
| 518 | − right: 23px; | |
| 519 | −} | |
| 520 | −.carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 521 | − content: '<'; | |
| 522 | − padding-right: 2px; | |
| 523 | −} | |
| 524 | −.carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 525 | − content: '>'; | |
| 526 | − padding-left: 2px; | |
| 527 | −} | |
| 528 | −.carousel .carousel-top-arrow { | |
| 529 | − top: 75px; | |
| 530 | −} | |
| 531 | −.carousel .carousel-bottom-arrow { | |
| 532 | − bottom: 75px; | |
| 533 | −} | |
| 534 | −.carousel .carousel-top-arrow.carousel-arrow-default:before { | |
| 535 | − content: '\1431'; | |
| 536 | − padding-bottom: 2px; | |
| 537 | −} | |
| 538 | −.carousel .carousel-bottom-arrow.carousel-arrow-default:before { | |
| 539 | − content: '\142F'; | |
| 540 | − padding-top: 2px; | |
| 541 | −} | |
| 542 | −.carousel .carousel-track { | |
| 543 | − list-style: none; | |
| 544 | − padding: 0; | |
| 545 | − margin: 0; | |
| 546 | − touch-action: pan-y pinch-zoom; | |
| 547 | −} | |
| 548 | −.carousel .carousel-track .carousel-slide { | |
| 549 | − display: inline-block; | |
| 550 | − opacity: 0.7; | |
| 551 | − transition: opacity 0.5s ease-in-out; | |
| 552 | −} | |
| 553 | −.carousel .carousel-track .carousel-slide > * { | |
| 554 | − display: block; | |
| 555 | − white-space: normal; | |
| 556 | −} | |
| 557 | −.carousel .carousel-track .carousel-slide.carousel-slide-loading { | |
| 558 | − background: rgba(204, 204, 204, 0.7); | |
| 559 | −} | |
| 560 | −.carousel .carousel-track .carousel-slide.carousel-slide-fade { | |
| 561 | − position: absolute; | |
| 562 | − left: 50%; | |
| 563 | − transform: translateX(-50%); | |
| 564 | − opacity: 0; | |
| 565 | −} | |
| 566 | −.carousel .carousel-track .carousel-slide.carousel-slide-selected { | |
| 567 | − opacity: 1; | |
| 568 | − z-index: 1; | |
| 569 | −} | |
| 570 | −.carousel.loaded { | |
| 571 | − opacity: 1; | |
| 572 | −} | |
| 573 | −.carousel .carousel-dots { | |
| 574 | − list-style: none; | |
| 575 | − padding: 0; | |
| 576 | − margin: 0; | |
| 577 | − position: absolute; | |
| 578 | − left: 0; | |
| 579 | − right: 0; | |
| 580 | − bottom: -30px; | |
| 581 | − text-align: center; | |
| 582 | −} | |
| 583 | −.carousel .carousel-dots li { | |
| 584 | − display: inline-block; | |
| 585 | −} | |
| 586 | −.carousel .carousel-dots button { | |
| 587 | − border: 0; | |
| 588 | − background: transparent; | |
| 589 | − font-size: 1.1em; | |
| 590 | − cursor: pointer; | |
| 591 | − color: #CCC; | |
| 592 | − padding-left: 6px; | |
| 593 | − padding-right: 6px; | |
| 594 | −} | |
| 595 | −.carousel .carousel-dots button.selected { | |
| 596 | − color: black; | |
| 597 | −} | |
| 598 | −.carousel .carousel-dots button:focus { | |
| 599 | − outline: none; | |
| 600 | −} | |
| 601 | −[dir="rtl"] .carousel .carousel-viewport { | |
| 602 | − text-align: right; | |
| 603 | −} | |
| 604 | −[dir="rtl"] .carousel .carousel-left-arrow { | |
| 605 | − left: unset; | |
| 606 | − right: 23px; | |
| 607 | −} | |
| 608 | −[dir="rtl"] .carousel .carousel-right-arrow { | |
| 609 | − right: unset; | |
| 610 | − left: 23px; | |
| 611 | −} | |
| 612 | −[dir="rtl"] .carousel .carousel-left-arrow.carousel-arrow-default:before { | |
| 613 | − padding-left: 2px; | |
| 614 | − padding-right: unset; | |
| 615 | −} | |
| 616 | −[dir="rtl"] .carousel .carousel-right-arrow.carousel-arrow-default:before { | |
| 617 | − padding-right: 2px; | |
| 618 | − padding-left: unset; | |
| 619 | −}</style> | |
| 620 | −<style>.grecaptcha-badge { visibility: hidden; }</style> | |
| 621 | −<style>.page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }</style> | |
| 622 | −<script>"use strict"; | |
| 623 | − | |
| 624 | −if ('serviceWorker' in navigator) { | |
| 625 | − window.addEventListener('load', function () { | |
| 626 | − navigator.serviceWorker.register('/sw.js'); | |
| 627 | − }); | |
| 628 | −}</script></head> | |
| 629 | −<body class="x x-fonts-fjalla-one"><div id="layout-46581-f-8-f-a-647-47-c-3-ad-6-f-5-b-91-b-2-f-6-b-85-d" class="layout layout-layout layout-layout-layout-12 locale-fr-CA lang-fr"><div data-ux="Page" id="page-53485" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div id="2069b3ae-15ba-4a50-9006-438c0d37a441" class="widget widget-header widget-header-header-9"><div data-ux="Header" role="main" data-aid="HEADER_WIDGET" id="n-53486" class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div id="freemium-ad-53487"></div><section data-ux="Section" data-aid="HEADER_SECTION" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-j c1-k c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-n c1-4 c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-v c1-w c1-x c1-y c1-z c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-t c1-16 c1-17 c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.53490.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:200,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:340,h:200,cg:true,m/cr=w:340,h:200/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 2x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-53486" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-2g c1-2h c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-2p c1-2q c1-2r c1-e c1-f c1-g"/></div></a></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-w c1-17 c1-v c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-2w c1-b c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.53491.click,click">(450) 668-6146</a></p></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" id="n-5348653489-navBarId" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-3a c1-w c1-3b c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><nav data-ux="Nav" data-aid="HEADER_NAV_RENDERED" role="navigation" class="x-el x-el-nav c1-1 c1-2 c1-3c c1-3d c1-n c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><ul data-ux="List" id="nav-53492" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-3a c1-1s c1-1t c1-1u c1-1v c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53494.click,click">Accueil</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53495.click,click">Appartements à louer</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-1" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="53496" aria-expanded="false" data-aid="NAV_DROPDOWN" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.53497.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_DROPDOWN"><span style="margin-right:4px">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53498.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53499.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53500.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53501.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53502.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53503.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53504.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53505.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53506.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53507.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53508.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53509.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53510.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53511.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53512.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53513.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53514.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53515.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53516.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53517.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53518.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53519.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53520.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53521.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53522.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLinkActive" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Active.53523.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53524.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53525.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53526.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53527.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53528.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53529.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53530.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53531.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMenuLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="7fc0225f-7d25-483b-8b71-fe97458ba9ad-nav-53492-toggleId" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Menu.Link.Default.53532.click,click">1611 3ème avenue</a></li></ul></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53533.click,click">Formulaires</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53534.click,click">Questions et Réponses</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53535.click,click">Nous joindre</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-3u c1-1i c1-3v c1-3w c1-3x c1-3y c1-3z c1-40 c1-41 c1-42 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.53536.click,click">Emplois</a></li><li data-ux="ListItemInline" class="x-el x-el-li nav-item c1-1 c1-2 c1-3j c1-3e c1-3k c1-14 c1-3l c1-3m c1-3n c1-3o c1-3a c1-3p c1-b c1-c c1-3q c1-3r c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavLinkDropdown" data-toggle-ignore="true" id="53537" aria-expanded="false" data-aid="NAV_MORE" data-edit-interactive="true" href="#" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Dropdown.53538.click,click"><div style="pointer-events:none;display:flex;align-items:center" data-aid="NAV_MORE"><span style="margin-right:4px">Plus</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-1i c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></div></a></div><ul data-ux="Dropdown" role="menu" id="more-53493" class="x-el x-el-ul c1-1 c1-2 c1-3 c1-37 c1-38 c1-4d c1-4e c1-4f c1-4g c1-4h c1-4u c1-4i c1-3o c1-4j c1-4k c1-n c1-4l c1-b c1-c c1-4m c1-4n c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" aria-labelledby="more-53493" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53539.click,click">Accueil</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" aria-labelledby="more-53493" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53540.click,click">Appartements à louer</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="menu" data-ux="NavMoreMenuLink" data-ignore-close="true" data-edit-interactive="true" aria-labelledby="more-53493" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-4x c1-4v c1-1z c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53541.click,click">Propriétés</a><ul data-ux="NavListNested" role="menu" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-4y c1-3f c1-3g c1-3h c1-3i c1-4q c1-b c1-c c1-d c1-e c1-f c1-g"><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" aria-labelledby="more-53493" href="/montr%C3%A9al" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53542.click,click">--- Montréal ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" aria-labelledby="more-53493" href="/5080-5100-pie-ix" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53543.click,click">5080-5100 Pie-IX</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" aria-labelledby="more-53493" href="/charlemagne-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53544.click,click">-- Charlemagne --</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" aria-labelledby="more-53493" href="/15-yvon-plourde" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53545.click,click">15 Yvon Plourde</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" aria-labelledby="more-53493" href="/laval" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53546.click,click">--- Laval ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" aria-labelledby="more-53493" href="/2660-de-la-rennaissance" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53547.click,click">2660 De la Rennaissance</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" aria-labelledby="more-53493" href="/590-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53548.click,click">590 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" aria-labelledby="more-53493" href="/596-lartigue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53549.click,click">596 Lartigue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" aria-labelledby="more-53493" href="/401-lulli" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53550.click,click">401 Lulli</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" aria-labelledby="more-53493" href="/3515-rivard" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53551.click,click">3515 Rivard</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" aria-labelledby="more-53493" href="/3260-st-martin-est" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53552.click,click">3260 St-Martin Est</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" aria-labelledby="more-53493" href="/terrebonne" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53553.click,click">--- Terrebonne ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" aria-labelledby="more-53493" href="/2952-chemin-st-charles-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53554.click,click">2952 chemin St-Charles</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" aria-labelledby="more-53493" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53555.click,click">1064 à 1108 Mc Kenzie</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" aria-labelledby="more-53493" href="/1285-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53556.click,click">1285 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" aria-labelledby="more-53493" href="/1305-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53557.click,click">1305 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" aria-labelledby="more-53493" href="/1325-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53558.click,click">1325 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" aria-labelledby="more-53493" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53559.click,click">1340-1350 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" aria-labelledby="more-53493" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53560.click,click">1345-1355 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" aria-labelledby="more-53493" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53561.click,click">1365-1375 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" aria-labelledby="more-53493" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53562.click,click">1370-1380 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" aria-labelledby="more-53493" href="/1390-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53563.click,click">1390 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" aria-labelledby="more-53493" href="/1405-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53564.click,click">1405 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" aria-labelledby="more-53493" href="/1415-fran%C3%A7ois-paquin" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53565.click,click">1415 François Paquin</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" aria-labelledby="more-53493" href="/ste-th%C3%A9r%C3%A8se" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53566.click,click">--- Ste-Thérèse ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNestedActive" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" aria-labelledby="more-53493" href="/100-110-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-1o c1-44 c1-4t c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.NestedActive.53567.click,click">100-110 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" aria-labelledby="more-53493" href="/120-130-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53568.click,click">120-130 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" aria-labelledby="more-53493" href="/140-150-place-brosseau" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53569.click,click">140-150 Place Brosseau</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" aria-labelledby="more-53493" href="/shawinigan" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53570.click,click">--- Shawinigan ---</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" aria-labelledby="more-53493" href="/299-16e-rue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53571.click,click">299 16e Rue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" aria-labelledby="more-53493" href="/1600-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53572.click,click">1600 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" aria-labelledby="more-53493" href="/1601-2%C3%A8me-avenue-1" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53573.click,click">1601 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" aria-labelledby="more-53493" href="/1602-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53574.click,click">1602 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" aria-labelledby="more-53493" href="/1603-2%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53575.click,click">1603 2ème avenue</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLinkNested" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" aria-labelledby="more-53493" href="/1611-3%C3%A8me-avenue" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4q c1-4r c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Nested.53576.click,click">1611 3ème avenue</a></li></ul></div></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" aria-labelledby="more-53493" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53577.click,click">Formulaires</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" aria-labelledby="more-53493" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53578.click,click">Questions et Réponses</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" aria-labelledby="more-53493" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53579.click,click">Nous joindre</a></li><li data-ux="ListItem" role="menuitem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-16 c1-b c1-c c1-4p c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavMoreMenuLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" aria-labelledby="more-53493" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-4v c1-4w c1-2t c1-b c1-2x c1-44 c1-2z c1-1q c1-4s c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.HEADER.header9.Nav.MoreMenu.Link.Default.53580.click,click">Emplois</a></li></ul></li></ul></nav></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3u c1-4 c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-u c1-50 c1-w c1-3b c1-y c1-z c1-51 c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" data-aid="HEADER_LOGO_RENDERED" class="x-el x-el-div c1-14 c1-15 c1-52 c1-t c1-c c1-18 c1-19 c1-1a c1-1b c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="Link" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" title="Gestion Immobilière Groupe Théorêt" href="/accueil" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-1k c1-1l c1-1m c1-t c1-1n c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Logo.Default.Link.Default.53581.click,click"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-1s c1-1t c1-1u c1-1v c1-1w c1-b c1-c c1-d c1-1x c1-e c1-f c1-g"><img src="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=h:104,cg:true,m/qt=q:95" srcSet="//img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:177,h:104,cg:true,m/cr=w:177,h:104/qt=q:95, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:353,h:208,cg:true,m/cr=w:353,h:208/qt=q:95 2x, //img1.wsimg.com/isteam/ip/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/logo.png/:/rs=w:530,h:312,cg:true,m/cr=w:530,h:312/qt=q:95 3x" alt="Gestion Immobilière Groupe Théorêt" data-ux="ImageLogo" data-aid="HEADER_LOGO_IMAGE_RENDERED" id="n-53486" class="x-el x-el-img c1-1 c1-2 c1-4 c1-t c1-p c1-q c1-1y c1-1z c1-20 c1-21 c1-22 c1-23 c1-3 c1-24 c1-25 c1-26 c1-27 c1-28 c1-29 c1-b c1-c c1-2a c1-2b c1-53 c1-2d c1-2e c1-2f c1-2g c1-54 c1-2i c1-2j c1-2k c1-2l c1-2m c1-2n c1-2o c1-d c1-55 c1-2q c1-56 c1-e c1-f c1-g"/></div></a></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-37 c1-38 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-58 c1-1y c1-59 c1-5a c1-5b c1-w c1-5c c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-w c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-3" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="LinkDropdown" data-toggle-ignore="true" id="53582" aria-expanded="false" toggleId="n-53486-navId-mobile" icon="hamburger" data-edit-interactive="true" data-aid="HAMBURGER_MENU_LINK" aria-label="Hamburger Site Navigation Icon" href="#" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-u c1-1i c1-w c1-5c c1-1j c1-1k c1-1l c1-1m c1-43 c1-b c1-c c1-1p c1-5r c1-5s c1-d c1-4z c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.53583.click,click"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="IconHamburger" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-3m c1-41 c1-40 c1-42 c1-3z c1-b c1-c c1-d c1-e c1-f c1-g"><g><path fill-rule="evenodd" d="M4 8h16V6H4z"></path><path fill-rule="evenodd" d="M4 13.096h16v-2.001H4z"></path><path fill-rule="evenodd" d="M4 18.346h16v-2H4z"></path></g></svg></a></div></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-5u c1-5v c1-1s c1-5k c1-5l c1-5m c1-u c1-3b c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="Phone" data-aid="HEADER_PHONE_RENDERED" data-tccl="ux2.header.phone_number.click,click" data-typography="BodyBeta" data-font-scaled="true" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-2v c1-5w c1-5x c1-5y c1-t c1-b c1-43 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33"><a rel="" role="link" aria-haspopup="false" data-ux="Link" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-34 c1-2y c1-t c1-1p c1-35 c1-36 c1-30 c1-31 c1-32 c1-33" data-tccl="ux2.HEADER.header9.Section.Default.Link.Default.53584.click,click">(450) 668-6146</a></p></div><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5h c1-5i c1-5j c1-1s c1-5k c1-5l c1-5m c1-u c1-2s c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"></div></div><div role="navigation" data-ux="NavigationDrawer" id="n-53486-navId-mobile" class="x-el x-el-div c1-1 c1-2 c1-3 c1-5z c1-60 c1-4 c1-61 c1-4k c1-62 c1-h c1-63 c1-64 c1-65 c1-66 c1-67 c1-3p c1-68 c1-u c1-50 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-r c1-s c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="40px" height="40px" data-ux="CloseIcon" data-edit-interactive="true" data-close="true" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-41 c1-40 c1-42 c1-3z c1-1i c1-69 c1-6a c1-4h c1-6b c1-6c c1-2y c1-b c1-6d c1-30 c1-31 c1-32 c1-33"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Container" id="n-53486-navContainerId-mobile" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-4k c1-6e c1-4 c1-6f c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-5c c1-w c1-6g c1-50 c1-6h c1-b c1-c c1-d c1-e c1-f c1-g"></div><div data-ux="Block" id="n-53486-navLinksContentId-mobile" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><ul role="menu" data-ux="NavigationDrawerList" id="n-53486-navListId-mobile" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-16 c1-1s c1-1u c1-1v c1-1t c1-1f c1-1g c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" data-edit-interactive="true" data-close="true" href="/accueil" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53585.click,click"><span>Accueil</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" data-edit-interactive="true" data-close="true" href="/appartements-%C3%A0-louer" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53586.click,click"><span>Appartements à louer</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-4" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><a rel="" role="button" aria-haspopup="menu" data-ux="NavigationDrawerLink" data-toggle-ignore="true" id="53587" aria-expanded="false" data-edit-interactive="true" href="#" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Dropdown.53588.click,click"><span style="pointer-events:none">Propriétés</span><svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-4b c1-4c c1-20 c1-3a c1-5w c1-5h c1-6t c1-b c1-6n c1-6o c1-6q c1-6r c1-6s"><path fill-rule="evenodd" d="M18.605 7l-6.793 7.024-6.375-7.002L4 8.467 11.768 17l.485-.501L20 8.489z"></path></svg></a><ul role="menu" data-ux="NavigationDrawerList" class="x-el x-el-ul c1-1 c1-2 c1-1y c1-1z c1-3e c1-3f c1-3g c1-3h c1-3i c1-n c1-b c1-c c1-d c1-e c1-f c1-g"><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="013aa3ff-4d72-41c0-8dba-badd3fd04a91" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/montr%C3%A9al" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53589.click,click"><span>--- Montréal ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="1f705ede-51f4-4889-b892-4a8853fd1fb7" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/5080-5100-pie-ix" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53590.click,click"><span>5080-5100 Pie-IX</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="81d6f4a2-fb30-4815-ab80-73e40296289f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/charlemagne-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53591.click,click"><span>-- Charlemagne --</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="99bdf8e4-4248-4a2b-9929-0e5752712b63" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/15-yvon-plourde" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53592.click,click"><span>15 Yvon Plourde</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="517714ce-eb31-4e19-8616-25fa2540c28a" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/laval" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53593.click,click"><span>--- Laval ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="248fca6c-30b9-46bf-9cda-98d9cfe822bf" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2660-de-la-rennaissance" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53594.click,click"><span>2660 De la Rennaissance</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="07cb1e25-2cff-4b5d-ad86-bc98a772edab" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/590-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53595.click,click"><span>590 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="378d5010-0db4-40ee-b4f0-a965a96d19ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/596-lartigue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53596.click,click"><span>596 Lartigue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="bdff1d33-31c0-4b3b-8d89-80cc48ac1937" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/401-lulli" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53597.click,click"><span>401 Lulli</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="aca2614f-963e-4ea0-8ddc-3347fa05c915" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3515-rivard" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53598.click,click"><span>3515 Rivard</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a03d0d86-c695-440f-90aa-d5f76ce56b44" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/3260-st-martin-est" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53599.click,click"><span>3260 St-Martin Est</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="adfc4283-353c-4f0c-89af-2b286d2761ee" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/terrebonne" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53600.click,click"><span>--- Terrebonne ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5d6e7575-55a5-41b3-a331-2c3ee533400f" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/2952-chemin-st-charles-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53601.click,click"><span>2952 chemin St-Charles</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="863efac1-a535-4c40-997d-aa36cb623c3d" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1064-%C3%A0-1108-mc-kenzie" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53602.click,click"><span>1064 à 1108 Mc Kenzie</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="dc1be149-536e-4db5-a6e9-4d2e35163ae1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1285-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53603.click,click"><span>1285 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="97758d88-0fc6-4b93-98c9-26d1e147b511" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1305-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53604.click,click"><span>1305 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a52551de-a7b4-4279-b6b3-e66eedac75a6" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1325-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53605.click,click"><span>1325 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="e73034da-e771-4129-bcc6-2beda3de2694" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1340-1350-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53606.click,click"><span>1340-1350 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2218eaf5-a0f2-4368-be29-eec049f1ab5e" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1345-1355-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53607.click,click"><span>1345-1355 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="a642f373-3162-42e3-abd5-f4b9c487856c" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1365-1375-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53608.click,click"><span>1365-1375 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="f1b8346c-faa3-44fb-b0b6-423aeae96b08" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1370-1380-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53609.click,click"><span>1370-1380 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="982c9dc6-c342-4ee8-9779-967959e93160" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1390-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53610.click,click"><span>1390 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="ccd2fa55-c4ac-4b1a-9ef1-e7e3d58eb130" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1405-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53611.click,click"><span>1405 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="70a5529b-62fb-4776-a99c-47bef5a97313" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1415-fran%C3%A7ois-paquin" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53612.click,click"><span>1415 François Paquin</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="6d4a8d42-430e-4ce6-8744-1896f71ad563" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/ste-th%C3%A9r%C3%A8se" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53613.click,click"><span>--- Ste-Thérèse ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLinkActive" target="" data-page="e7a62dc7-0dff-4233-86d6-cfda30068879" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/100-110-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-b c1-4o c1-c c1-4t c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Active.53614.click,click"><span>100-110 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="deb315bc-861c-42ac-bdb6-5f6d5c594923" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/120-130-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53615.click,click"><span>120-130 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="5c8b7293-09f6-4b07-b94c-e83ea0a13b2b" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/140-150-place-brosseau" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53616.click,click"><span>140-150 Place Brosseau</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="2ce5d73f-b63c-4546-805d-5a79f2f405be" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/shawinigan" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53617.click,click"><span>--- Shawinigan ---</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="53e888d0-e2b2-436c-a2f6-5b86aa6a14f1" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/299-16e-rue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53618.click,click"><span>299 16e Rue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="0290e24e-3bfb-4e45-a942-e24a24257732" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1600-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53619.click,click"><span>1600 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="7eae9993-211d-4783-bff0-6cb74285a419" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1601-2%C3%A8me-avenue-1" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53620.click,click"><span>1601 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="26f43b22-306b-4b2e-8456-a609a1d9deb2" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1602-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53621.click,click"><span>1602 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="c6069d81-36fd-4867-9c67-b23308e04375" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1603-2%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53622.click,click"><span>1603 2ème avenue</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6u c1-6k c1-b c1-c c1-4p c1-6l c1-6v c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerSubLink" target="" data-page="44ea5ac4-7d70-4676-9153-dc9b7b289033" data-edit-interactive="true" data-close="true" data-aid="MOBILE_NAV_SUBLINK" href="/1611-3%C3%A8me-avenue" data-typography="SubNavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-3u c1-1i c1-25 c1-27 c1-6w c1-s c1-w c1-6m c1-x c1-2z c1-b c1-4o c1-c c1-1q c1-4s c1-d c1-6p c1-e c1-f c1-g" data-tccl="ux2.HEADER.header9.NavigationDrawer.Sub.Link.Default.53623.click,click"><span>1611 3ème avenue</span></a></li></ul></div></div></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" data-edit-interactive="true" data-close="true" href="/formulaires" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53624.click,click"><span>Formulaires</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" data-edit-interactive="true" data-close="true" href="/questions-et-r%C3%A9ponses" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53625.click,click"><span>Questions et Réponses</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" data-edit-interactive="true" data-close="true" href="/nous-joindre" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53626.click,click"><span>Nous joindre</span></a></li><li role="menuitem" data-ux="NavigationDrawerListItem" class="x-el x-el-li c1-1 c1-2 c1-4o c1-1z c1-3u c1-6i c1-6j c1-6k c1-b c1-c c1-4p c1-6l c1-d c1-e c1-f c1-g"><a rel="" role="link" aria-haspopup="false" data-ux="NavigationDrawerLink" target="" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" data-edit-interactive="true" data-close="true" href="/emplois" data-typography="NavBeta" class="x-el x-el-a c1-1 c1-2 c1-1e c1-1f c1-1g c1-u c1-1i c1-37 c1-38 c1-r c1-s c1-w c1-6m c1-x c1-b c1-2x c1-6n c1-2z c1-1q c1-4s c1-6o c1-6p c1-6q c1-6r c1-6s" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.53627.click,click"><span>Emplois</span></a></li></ul><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3u c1-d c1-4z c1-e c1-f c1-g"></div></div></div></div></div></div></div></div></section> </div></div></div><div id="ddeee870-d743-406c-ac90-b6fb16b01962" class="widget widget-gallery widget-gallery-gallery-1"><div data-ux="WidgetBanner" role="region" id="ddeee870-d743-406c-ac90-b6fb16b01962" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="SectionBanner" data-test-radpack="client" class="x-el x-el-section c1-1 c1-2 c1-6x c1-h c1-6y c1-b c1-c c1-l c1-6z c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h1 role="heading" aria-level="1" data-ux="SectionHeading" data-aid="GALLERY_SECTION_TITLE_RENDERED" data-promoted-from="2" data-order="0" data-typography="HeadingGamma" data-font-scaled="true" class="x-el x-el-h1 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-2x c1-2y c1-2z c1-30 c1-72 c1-73 c1-31 c1-32 c1-33"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">100-110 Place Brosseau, Ste-Thérèse, Québec, J7E 4V3</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-79 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-2y c1-30 c1-31 c1-32 c1-33"/></div></h1></div><div data-ux="Element" id="bs-5" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div><div data-ux="Block" data-test-radpack="bootstrap2" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Carousel" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div class="carousel" style="width:100%;height:600px"><div class="carousel-container-inner" style="width:100%;height:600px;margin-bottom:0"><div class="carousel-viewport" style="width:100%;height:600px"><ul class="carousel-track" style="line-height:0;transform:translateX(NaNpx);transition:none"><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="-2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="-1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="0" class="carousel-slide carousel-slide-selected carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="1" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:1" data-index="2" class="carousel-slide carousel-slide-loading"></li><li style="margin-left:5px;height:600px;width:inherit;overflow-y:hidden;min-height:600px;overflow-x:hidden;min-width:inherit;opacity:0.3" data-index="3" class="carousel-slide carousel-slide-loading"></li></ul></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7e c1-7f c1-b c1-c c1-7g c1-d c1-e c1-f c1-g"><button data-ux="CarouselButtonPrevious" data-aid="GALLERY_SCROLL_LEFT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7h c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M15.485 4L7 11.769l.499.484-.002.001L15.463 20l1.48-1.394-6.984-6.794 6.963-6.375z"></path></svg></button><button data-ux="CarouselButtonNext" data-aid="GALLERY_SCROLL_RIGHT_ARROW" class="x-el x-el-button c1-1 c1-2 c1-7u c1-1i c1-1j c1-1k c1-1l c1-1m c1-25 c1-27 c1-1v c1-1t c1-7i c1-29 c1-7j c1-44 c1-60 c1-7k c1-4h c1-7l c1-7m c1-7n c1-b c1-7o c1-7p c1-47 c1-7q c1-7r c1-7s c1-7t c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" data-edit-interactive="true" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><path fill-rule="evenodd" d="M8.49 4L7 5.395l7.024 6.793-7.001 6.375L8.467 20 17 12.232l-.501-.485z"></path></svg></button></div></div></div></div></div></div></div></section> </div></div></div><div id="8534d5f3-4c47-48e1-8200-185aa115259c" class="widget widget-menu widget-menu-menu-1"><div data-ux="Widget" role="region" id="8534d5f3-4c47-48e1-8200-185aa115259c" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><h2 role="heading" aria-level="2" data-ux="SectionHeading" data-aid="MENU_SECTION_TITLE_RENDERED" data-typography="HeadingBeta" class="x-el x-el-h2 c1-1 c1-2 c1-1f c1-1g c1-70 c1-p c1-3f c1-1y c1-71 c1-5y c1-15 c1-7v c1-7w c1-2z c1-7x c1-72 c1-73 c1-7y c1-7z c1-80"><span data-ux="Element" class="x-el x-el-span c1-74 c1-34 c1-75 c1-76 c1-77">Appartements à louer</span><div data-ux="Block" class="x-el x-el-div c1-4 c1-78 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"><hr aria-hidden="true" role="separator" data-ux="SectionHeadingHR" class="x-el x-el-hr c1-81 c1-7a c1-7b c1-7c c1-1z c1-7d c1-14 c1-15 c1-7v c1-7x c1-7y c1-7z c1-80"/></div></h2><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-88 c1-89 c1-8a c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Menu" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_CATEGORY_100PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_0" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">100 PLACE BROSSEAU</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_0" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_412" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION0_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">4 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION0_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1250$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION0_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span> Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-4v c1-71 c1-4 c1-b c1-c c1-d c1-e c1-f c1-g"/></div><div data-ux="Block" data-aid="MENU_CATEGORY_110PLACEBR" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div menu-category c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-8b c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="MENU_SECTION_TITLE_1" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-43 c1-15 c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">110 PLACE BROSSEAU</h3></div></div><div data-ux="Block" data-aid="MENU_ITEM_CONTAINER_1" class="x-el x-el-div c1-1 c1-2 c1-8f c1-8g c1-8h c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" data-aid="MENU_ITEM_312" class="x-el x-el-div c1-1 c1-2 c1-8i c1-8j c1-8k c1-4 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-x c1-4 c1-50 c1-4w c1-b c1-c c1-8l c1-d c1-e c1-f c1-g"><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="MENU_SECTION1_ITEM0_TITLE" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-4w c1-b c1-43 c1-6n c1-2z c1-8m c1-8n c1-8c c1-6o c1-6q c1-6r c1-6s">3 1/2</h4><div data-ux="PriceMajor" data-aid="MENU_SECTION1_ITEM0_PRICE" data-typography="BodyBeta" class="x-el x-el-div c1-1 c1-2 c1-1f c1-1g c1-8o c1-1y c1-1z c1-2u c1-3c c1-16 c1-b c1-43 c1-6n c1-2z c1-8p c1-8q c1-5d c1-8r c1-8c c1-8s c1-6o c1-6q c1-6r c1-6s">1150$ / mois</div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-8t c1-8u c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Text" data-aid="MENU_SECTION1_ITEM0_DESC" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-3j c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span> Disponibilité: Dès maintenant</span></p></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-91 c1-83 c1-84 c1-85 c1-b c1-c c1-5d c1-5e c1-5f c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-92 c1-93 c1-94 c1-1s c1-86 c1-z c1-87 c1-b c1-c c1-5n c1-5o c1-5p c1-5q c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-aid="MENU_SECTION_FOOTNOTE_RENDERED" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-5y c1-b c1-95 c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Il se peut que certaines informations soient erronées. Veuillez communiquer avec nous pour confirmer les disponibilités et les services disponibles.</p></div></div></div></section> </div></div></div><div id="dfc04222-c047-4b43-a492-6603ccbabee2" class="widget widget-contact widget-contact-contact-4"><div data-ux="WidgetSplit" role="region" id="dfc04222-c047-4b43-a492-6603ccbabee2" class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <div data-ux="ContainerSplit" class="x-el x-el-div c1-1 c1-2 c1-3e c1-3f c1-1v c1-1t c1-t c1-u c1-50 c1-3a c1-3 c1-9b c1-68 c1-b c1-c c1-d c1-9c c1-9d c1-9e c1-9f c1-e c1-f c1-g"><div data-ux="SplitItem" id="form-container53628" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-b c1-c c1-9g c1-9h c1-9i c1-d c1-9j c1-9k c1-9l c1-9m c1-e c1-f c1-g"><section data-ux="SectionSplit" data-aid="CONTACT_INFO_CONTAINER_REND" class="x-el x-el-section c1-1 c1-2 c1-3 c1-h c1-i c1-4 c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-b c1-c c1-d c1-9n c1-9o c1-9p c1-73 c1-e c1-f c1-g"><div data-ux="Content" class="x-el x-el-div c1-1 c1-2 c1-16 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-71 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ContentText" data-aid="CONTACT_INTRO_DESC_REND" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-9q c1-9r c1-9s c1-9t c1-9u c1-9v c1-9w c1-9x c1-9y c1-9z c1-a0 c1-a1 c1-a2 c1-a3 c1-a4 c1-a5 c1-a6 c1-a7 c1-a8 c1-a9 c1-aa c1-ab c1-ac c1-ad c1-ae c1-af c1-ag c1-ah c1-ai c1-aj c1-ak c1-al c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Services disponibles</strong></span></p><p style="margin:0"><ul> | |
| 630 | − <li> Stationnement extérieur (Inclus)</li> | |
| 631 | − <li>Concierge (Inclus)</li> | |
| 632 | −</ul></p></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="ContentText" data-aid="CONTACT_INFO_ADDRESS_REND" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">100 Place Brosseau, Sainte-Thérèse, Quebec J7E 4V3, Canada</p><p data-ux="ContentText" data-typography="BodyAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-am c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g">Lise Duhamel | |
| 633 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147544661" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53630.click,click">514-754-4661</a> | |
| 634 | −Cellulaire: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:5147544661" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53631.click,click">514-754-4661</a> | |
| 635 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4504359520" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53632.click,click">450-435-9520</a> | |
| 636 | − | |
| 637 | −Bureau | |
| 638 | −Téléphone: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686146" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53633.click,click">450-668-6146</a> | |
| 639 | −Fax: <a rel="" role="link" aria-haspopup="false" data-ux="Link" data-aid="CONTACT_INFO_PHONE_REND" href="tel:4506686166" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-c c1-1p c1-1q c1-1r c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Link.Default.53634.click,click">450-668-6166</a></p></div><div data-ux="Element" id="bs-6" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-an c1-e c1-f c1-g"><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_MOBILE" class="x-el x-el-div c1-1 c1-2 c1-3u c1-b c1-c c1-d c1-4z c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.53635.click,click">Vos commentaires</button></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTAINER_DESKTOP" class="x-el x-el-div c1-1 c1-2 c1-n c1-ay c1-b c1-c c1-d c1-o c1-e c1-f c1-g"><div><div data-ux="Block" id="desktop-form-expanded53629" data-aid="CONTACT_FORM_CONTAINER_REND" class="x-el x-el-div c1-1 c1-2 c1-4h c1-7h c1-60 c1-az c1-h c1-i c1-b0 c1-7e c1-b1 c1-4 c1-3 c1-u c1-3b c1-b2 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-4 c1-3 c1-r c1-s c1-z c1-b3 c1-3a c1-u c1-50 c1-3b c1-b c1-c c1-d c1-e c1-f c1-g"><form aria-live="polite" data-ux="Form" class="x-el x-el-form c1-1 c1-2 c1-1z c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" name="_app_id" autoComplete="off" tabindex="-1" style="display:none" value=""/><h4 role="heading" aria-level="4" data-ux="HeadingMinor" data-aid="CONTACT_FORM_TITLE_REND" data-typography="HeadingDelta" class="x-el x-el-h4 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-8b c1-b c1-2x c1-6n c1-2z c1-6o c1-6q c1-6r c1-6s">Vos commentaires</h4><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Grid" class="x-el x-el-div c1-1 c1-2 c1-u c1-57 c1-v c1-82 c1-1y c1-83 c1-1z c1-85 c1-b c1-c c1-5d c1-5e c1-8c c1-5g c1-d c1-e c1-f c1-g"><div data-ux="GridCell" data-aid="CONTACT_FORM_COL1" class="x-el x-el-div c1-1 c1-2 c1-57 c1-51 c1-5t c1-52 c1-t c1-1s c1-86 c1-1u c1-87 c1-b c1-c c1-5n c1-5o c1-8d c1-5q c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Nom" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53636" value="" data-aid="Nom" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53636" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Nom*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="CONTACT_FORM_EMAIL" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53637" value="" data-aid="CONTACT_FORM_EMAIL" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53637" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Email*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="InputFloatLabel" type="text" data-aid="Téléphone:" class="x-el x-el-div c1-1 c1-2 c1-3a c1-b c1-c c1-d c1-e c1-f c1-g"><input type="text" role="textbox" aria-multiline="false" data-ux="InputFloatLabel" id="input53638" value="" data-aid="Téléphone:" data-typography="InputAlpha" class="x-el x-el-input c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-b7 c1-b8 c1-4d c1-4e c1-7b c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bd c1-be c1-bf c1-bg c1-bh c1-bi c1-bj c1-bk c1-d c1-e c1-f c1-g"/><label data-ux="InputFloatLabelLabel" for="input53638" data-typography="InputAlpha" class="x-el x-el-label c1-1 c1-2 c1-14 c1-1f c1-1g c1-4h c1-bl c1-bm c1-bn c1-6t c1-b c1-b9 c1-c c1-2z c1-bk c1-d c1-e c1-f c1-g">Téléphone:*</label></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-z c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><textarea role="textbox" aria-multiline="true" rows="6" aria-label="Message" data-ux="InputTextArea" placeholder="Message" data-aid="CONTACT_FORM_MESSAGE" data-typography="InputAlpha" class="x-el x-el-textarea c1-1 c1-2 c1-3 c1-79 c1-4 c1-b4 c1-b5 c1-90 c1-b6 c1-4f c1-37 c1-38 c1-4d c1-4e c1-7b c1-bo c1-b c1-b9 c1-c c1-2z c1-ba c1-bb c1-bc c1-bj c1-bk c1-d c1-e c1-f c1-g"></textarea></div></div></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-25 c1-38 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="DetailsMinor" data-typography="DetailsBeta" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-bp c1-96 c1-2z c1-97 c1-98 c1-99 c1-9a">Ce site est protégé par reCAPTCHA ; la <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/privacy" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.53639.click,click">Politique de confidentialité</a> et les <a rel="noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" href="https://policies.google.com/terms" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-1o c1-96 c1-1p c1-1q c1-1r c1-97 c1-98 c1-99 c1-9a" data-tccl="ux2.CONTACT.contact4.Form.Default.Link.Default.53640.click,click">Conditions d'utilisation</a> de Google s’appliquent.</p></div><div data-ux="Block" data-aid="CONTACT_FORM_CONTROLS" class="x-el x-el-div controls c1-1 c1-2 c1-u c1-3b c1-w c1-82 c1-y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" type="submit" data-aid="CONTACT_SUBMIT_BUTTON_REND" data-tccl="ux2.contact.submit_form.click,click" state="default" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Soumettre</button></div><span data-ux="Text" data-aid="CONTACT_CANCEL_BUTTON_REND" data-typography="BodyAlpha" class="x-el x-el-span c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-bq c1-8z c1-1o c1-5y c1-1h c1-3f c1-3e c1-b c1-c c1-2z c1-1w c1-br c1-bs c1-bt c1-d c1-e c1-f c1-g">Annuler</span></div></div></div></form></div></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><button data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CONTACT_FORM_REVEAL_BUTTON_REND" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-7c c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g" data-tccl="ux2.CONTACT.contact4.Content.Default.Button.Primary.53641.click,click">Vos commentaires</button></div></div></div></div></div></div></div></div></section></div><div data-ux="SplitItemImage" class="x-el x-el-div c1-1 c1-2 c1-u c1-51 c1-5h c1-t c1-3a c1-bu c1-bv c1-bw c1-bx c1-b c1-c c1-9g c1-9h c1-9i c1-by c1-bz c1-d c1-9j c1-9k c1-9l c1-c0 c1-c1 c1-e c1-f c1-g"><div data-ux="Map" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Element" id="bs-7" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-7h c1-60 c1-7u c1-c2 c1-c3 c1-c4 c1-3u c1-1i c1-b c1-c c1-d c1-e c1-f c1-g"><div style="left:0;top:0;right:0;bottom:0;position:absolute;transform:translate3d(0,0,0)" data-aid="CONTACT_MAP_REND"></div><button data-ux-btn="primary" data-ux="ButtonPrimary" data-tccl="ux2.contact.get_directions.click,click" icon="direction" data-typography="ButtonAlpha" class="x-el x-el-button c1-3s c1-3t c1-4h c1-c5 c1-c6 c1-1n c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-t c1-4d c1-4e c1-4q c1-4r c1-c7 c1-as c1-at c1-au c1-b c1-4t c1-av c1-44 c1-aw c1-c8 c1-c9 c1-ca c1-ax c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1c c1-1d c1-44 c1-b c1-3a c1-cb c1-3f c1-47 c1-48 c1-49 c1-4a"><span data-ux="Element" class="x-el x-el-span c1-1 c1-2 c1-cc c1-cd c1-4h c1-ce c1-7h c1-cf c1-cg c1-7k c1-ch c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px" data-ux="Icon" class="x-el x-el-svg c1-1 c1-2 c1-34 c1-14 c1-20 c1-b c1-44 c1-47 c1-48 c1-49 c1-4a"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M19.94 6.078l-7.273 14.546c-.129.265-.345.398-.648.398a.962.962 0 01-.17-.023.716.716 0 01-.557-.705V13.75H4.746a.716.716 0 01-.704-.557.736.736 0 01.045-.477.687.687 0 01.33-.341L18.962 5.1a.683.683 0 01.33-.08c.204 0 .375.073.511.217a.678.678 0 01.21.392.69.69 0 01-.073.448z" fill="currentColor"></path></svg></svg></span><span data-ux="Element" class="x-el x-el-span iconText c1-1c c1-1d c1-44 c1-b c1-3u c1-5y c1-ci c1-3f c1-47 c1-48 c1-49 c1-4a">Obtenez des instructions</span></span></button></div></div></div></div></div> </div></div></div><div id="f6b61190-5092-42db-b117-34388392de77" class="widget widget-footer widget-footer-footer-1"><div data-ux="Widget" role="contentinfo" id="f6b61190-5092-42db-b117-34388392de77" class="x-el x-el-div x-el c1-1 c1-2 c1-39 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div> <section data-ux="Section" class="x-el x-el-section c1-1 c1-2 c1-39 c1-h c1-i c1-81 c1-b4 c1-cj c1-b c1-c c1-l c1-m c1-d c1-e c1-f c1-g"><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><div data-ux="Layout" class="x-el x-el-div c1-1 c1-2 c1-5y c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="FooterDetails" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-8b c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a x-rt"><p style="margin:0"><span>© 2022 Gestion Immobilière Groupe Théorêt - Tous droit réservés</span></p><p style="margin:0"><span><br></span></p><p style="margin:0"><span><a class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" class="x-el x-el-a c1-1c c1-1d c1-8z c1-1f c1-1g c1-1h c1-1i c1-74 c1-b c1-ck c1-1p c1-45 c1-5s" href="/politique-confidentialit%C3%A9" rel="" data-page="0f1f056c-6170-4d49-810c-d98ccee3a8fb">Politique de confidentialité</a></span></p></div><div data-ux="Container" class="x-el x-el-div c1-1 c1-2 c1-p c1-q c1-r c1-s c1-t c1-5y c1-7c c1-b c1-c c1-10 c1-d c1-11 c1-e c1-12 c1-f c1-13 c1-g"><ul data-ux="NavFooter" class="x-el x-el-ul c1-1 c1-2 c1-cl c1-1s c1-1t c1-1u c1-1v c1-1y c1-3f c1-1z c1-3e c1-1w c1-b c1-c c1-19 c1-cm c1-d c1-e c1-f c1-g"><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="0a7061ef-df92-4f46-9ad0-71fec8c21a15" target="" data-aid="FOOTER_PAGE_LINK_0_RENDERED" data-edit-interactive="true" href="/accueil" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53644.click,click">Accueil</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="6bdafcfa-e7df-4007-ac15-b02a75283954" target="" data-aid="FOOTER_PAGE_LINK_1_RENDERED" data-edit-interactive="true" href="/appartements-%C3%A0-louer" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53645.click,click">Appartements à louer</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="e795ee94-88f2-4585-83e7-907aaaab7a56" target="" data-aid="FOOTER_PAGE_LINK_2_RENDERED" data-edit-interactive="true" href="/formulaires" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53646.click,click">Formulaires</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="616b6dc8-7d0a-4055-8e48-4b6ed154afe9" target="" data-aid="FOOTER_PAGE_LINK_3_RENDERED" data-edit-interactive="true" href="/questions-et-r%C3%A9ponses" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53647.click,click">Questions et Réponses</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="263c8bb6-522e-46ad-8639-3cf3e95ccad5" target="" data-aid="FOOTER_PAGE_LINK_4_RENDERED" data-edit-interactive="true" href="/nous-joindre" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53648.click,click">Nous joindre</a></li><li style="display:inline-block"><a rel="" role="link" aria-haspopup="false" data-ux="NavFooterLink" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" target="" data-aid="FOOTER_PAGE_LINK_5_RENDERED" data-edit-interactive="true" href="/emplois" data-typography="NavAlpha" class="x-el x-el-a c1-3s c1-3t c1-1e c1-1f c1-1g c1-14 c1-1i c1-25 c1-27 c1-28 c1-26 c1-b c1-43 c1-44 c1-2z c1-45 c1-46 c1-cn c1-co c1-47 c1-48 c1-49 c1-4a" data-tccl="ux2.FOOTER.footer1.Nav.Footer.Link.Default.53649.click,click">Emplois</a></li></ul></div><hr aria-hidden="true" role="separator" data-ux="HR" class="x-el x-el-hr c1-1 c1-2 c1-81 c1-90 c1-7b c1-1y c1-8b c1-7d c1-p c1-q c1-cp c1-b c1-c c1-d c1-e c1-f c1-g"/><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><p data-ux="FooterDetails" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED" data-typography="DetailsAlpha" class="x-el x-el-p c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-cq c1-2u c1-b c1-95 c1-44 c1-2z c1-47 c1-48 c1-49 c1-4a"><span>Optimisé par </span></p><a rel="nofollow noopener" role="link" aria-haspopup="true" data-ux="Link" target="_blank" data-aid="FOOTER_POWERED_BY_AIRO_RENDERED_LINK" href="https://www.godaddy.com/websites/website-builder?isc=pwugc&utm_source=wsb&utm_medium=applications&utm_campaign=fr-ca_corp_applications_base" data-typography="LinkAlpha" class="x-el x-el-a c1-1c c1-1d c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-ck c1-c c1-1p c1-45 c1-5s c1-d c1-e c1-f c1-g" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.53650.click,click"><svg viewBox="0 0 131 20" fill="currentColor" width="131" height="20" data-ux="IconAiro" class="x-el x-el-svg c1-1 c1-2 c1-43 c1-14 c1-20 c1-b c1-c c1-d c1-e c1-f c1-g"><g><path d="M19.3748 0.914408C17.0406 -0.544155 13.967 -0.197654 11.2308 1.52588C8.49389 -0.197654 5.42186 -0.544155 3.08767 0.914408C-0.599906 3.21843 -1.04832 9.15459 2.08731 14.1719C4.39948 17.8717 8.01369 20.0388 11.2308 19.9988C14.448 20.0388 18.063 17.8717 20.3744 14.1719C23.51 9.15459 23.0624 3.21925 19.3748 0.914408ZM3.7823 13.1129C3.12273 12.057 2.636 10.9425 2.33516 9.79949C2.05225 8.72249 1.94626 7.67157 2.02208 6.6761C2.16231 4.82212 2.91646 3.37823 4.14674 2.60941C5.37702 1.84058 7.00598 1.79574 8.73359 2.48222C8.99367 2.58576 9.2513 2.70561 9.50567 2.8385C8.58521 3.67255 7.73893 4.67536 7.01984 5.82656C5.1145 8.87576 4.53482 12.2633 5.19929 14.9693C4.67831 14.4075 4.20381 13.7863 3.78312 13.112L3.7823 13.1129ZM20.1265 9.79949C19.8257 10.9425 19.3389 12.057 18.6794 13.1129C18.2579 13.7871 17.7842 14.4075 17.2632 14.9693C17.8576 12.5462 17.4556 9.57855 15.9971 6.79513C15.8943 6.59946 15.6579 6.53424 15.4704 6.65164L10.9292 9.48886C10.7555 9.5973 10.7025 9.8264 10.811 10.0001L11.4771 11.0656C11.5855 11.2393 11.8146 11.2923 11.9882 11.1839L14.9315 9.34456C15.0301 9.62747 15.1182 9.912 15.194 10.1982C15.4769 11.2752 15.5829 12.3261 15.5071 13.3216C15.3668 15.1755 14.6127 16.6194 13.3824 17.3883C12.7677 17.7723 12.0543 17.9753 11.2781 17.9973C11.261 17.9973 11.2439 17.9973 11.2276 17.9973C11.2129 17.9973 11.1982 17.9973 11.1844 17.9973C10.4082 17.9753 9.69401 17.7723 9.07928 17.3883C7.849 16.6194 7.09403 15.1747 6.95462 13.3216C6.87961 12.3261 6.98478 11.2752 7.26769 10.1982C7.56853 9.05513 8.05526 7.94062 8.71484 6.88481C9.37441 5.82901 10.1628 4.90283 11.0588 4.13156C11.9026 3.40513 12.8011 2.84992 13.7289 2.48059C15.4565 1.79411 17.0855 1.83895 18.3158 2.60778C19.546 3.3766 20.301 4.8213 20.4404 6.67447C20.5154 7.66994 20.4102 8.72086 20.1273 9.79786L20.1265 9.79949Z" fill="black"></path><path d="M43.5589 7.57455C45.9624 7.57455 47.8922 9.43832 47.8922 11.81C47.8922 14.1817 45.9624 15.9957 43.5589 15.9957C41.1554 15.9957 39.2419 14.1646 39.2419 11.81C39.2419 9.45544 41.1717 7.57455 43.5589 7.57455ZM43.5589 13.7838C44.6759 13.7838 45.5132 12.8935 45.5132 11.7929C45.5132 10.6922 44.6759 9.78645 43.5589 9.78645C42.442 9.78645 41.621 10.6931 41.621 11.7929C41.621 12.8927 42.4583 13.7838 43.5589 13.7838ZM59.2338 10.027C59.2338 13.4284 56.7912 15.7666 53.2756 15.7666H48.8828C48.67 15.7666 48.5232 15.6028 48.5232 15.3908V4.68025C48.5232 4.48377 48.67 4.32071 48.8828 4.32071H53.2756C56.7912 4.32071 59.2338 6.60924 59.2338 10.027ZM56.6664 10.0278C56.6664 8.03275 55.3253 6.57745 53.38 6.57745H50.9765V13.5107H53.38C55.3261 13.5107 56.6664 11.9902 56.6664 10.0278ZM63.6951 7.57537C64.7582 7.57537 65.6086 8.03356 65.9844 8.65482V8.16401C65.9844 7.96752 66.1646 7.80447 66.3277 7.80447H67.9794C68.1759 7.80447 68.3227 7.96834 68.3227 8.16401V15.4242C68.3227 15.6207 68.1759 15.7675 67.9794 15.7675H66.3277C66.1475 15.7675 65.9844 15.6207 65.9844 15.4242V14.9171C65.6086 15.5384 64.7419 15.9965 63.6788 15.9965C61.6185 15.9965 59.705 14.3448 59.705 11.7774C59.705 9.21003 61.6348 7.57537 63.6951 7.57537ZM64.137 13.801C65.2319 13.801 66.0521 12.9604 66.0521 11.7945C66.0521 10.6286 65.2311 9.78808 64.137 9.78808C63.0428 9.78808 62.2218 10.6286 62.2218 11.7945C62.2218 12.9604 63.0428 13.801 64.137 13.801ZM72.9177 7.57537C73.9971 7.57537 74.8638 8.03356 75.2396 8.62221V4.66313C75.2396 4.46665 75.4035 4.31989 75.5992 4.31989H77.251C77.4475 4.31989 77.5942 4.46665 77.5942 4.66313V15.4234C77.5942 15.6199 77.4475 15.7666 77.251 15.7666H75.5992C75.4198 15.7666 75.256 15.6199 75.256 15.4234V14.9163C74.8141 15.5375 74.0135 15.9957 72.9503 15.9957C70.8901 15.9957 68.9766 14.3439 68.9766 11.7766C68.9766 9.20922 70.8737 7.57374 72.9177 7.57374M73.4085 13.8205C74.4977 13.8205 75.3155 12.9718 75.3155 11.7929C75.3155 10.614 74.4986 9.76525 73.4085 9.76525C72.3185 9.76525 71.5015 10.614 71.5015 11.7929C71.5015 12.9718 72.3185 13.8205 73.4085 13.8205ZM82.1884 7.57374C83.2679 7.57374 84.1345 8.03193 84.5104 8.62057V4.66313C84.5104 4.46665 84.6742 4.31989 84.8699 4.31989H86.5217C86.7182 4.31989 86.8649 4.46665 86.8649 4.66313V15.4234C86.8649 15.6199 86.7174 15.7666 86.5217 15.7666H84.8699C84.6897 15.7666 84.5267 15.6199 84.5267 15.4234V14.9163C84.0848 15.5375 83.2842 15.9957 82.221 15.9957C80.1608 15.9957 78.2473 14.3439 78.2473 11.7766C78.2473 9.20922 80.1445 7.57374 82.1884 7.57374ZM82.6792 13.8205C83.7685 13.8205 84.5862 12.9718 84.5862 11.7929C84.5862 10.614 83.7693 9.76525 82.6792 9.76525C81.5892 9.76525 80.7722 10.614 80.7722 11.7929C80.7722 12.9718 81.5892 13.8205 82.6792 13.8205ZM95.2511 7.80283H93.6034C93.3416 7.80283 93.2112 7.98301 93.1623 8.17869L91.6409 13.8662L90.012 8.17869C89.9182 7.8754 89.7698 7.80283 89.5579 7.80283H87.8205C87.412 7.80283 87.3362 8.08085 87.4185 8.35887L89.6231 15.4226C89.6883 15.6191 89.8196 15.7658 90.065 15.7658H91.0629L90.8509 16.467C90.6422 17.0727 90.2533 17.2358 89.7454 17.2358C89.31 17.2358 89.0247 17.0638 88.7165 16.8648C88.5983 16.7882 88.5061 16.7523 88.3912 16.7523C88.2428 16.7523 88.1409 16.8192 88.0031 17.023L87.5139 17.756C87.4185 17.9076 87.3672 17.9916 87.3672 18.1538C87.3672 18.4139 87.6272 18.577 87.9387 18.7547C88.4752 19.0612 89.1584 19.2145 89.9093 19.2145C91.5611 19.2145 92.6234 18.3152 93.0979 16.811L95.5625 8.35887C95.6767 8.03193 95.578 7.80283 95.2511 7.80283ZM36.5099 14.2045C35.644 15.2978 34.1398 15.9859 32.4375 15.9859C29.2415 15.9859 26.7426 13.5816 26.7426 10.1582C26.7426 6.7348 29.4396 4.14787 32.8468 4.14787C35.3619 4.14787 37.3733 5.22976 38.2652 7.40497C38.2929 7.4759 38.3068 7.53297 38.3068 7.58597C38.3068 7.68951 38.2391 7.76696 38.0222 7.84278L36.43 8.45589C36.3077 8.49747 36.2033 8.49502 36.1283 8.45996C36.0468 8.42246 35.9971 8.34745 35.9384 8.24228C35.3717 7.15631 34.351 6.41765 32.7864 6.41765C30.7563 6.41765 29.3027 8.0034 29.3027 10.0588C29.3027 12.1141 30.5419 13.6893 32.8435 13.6893C34.055 13.6893 35.022 13.1161 35.472 12.4908H34.0346C33.8235 12.4908 33.6612 12.3285 33.6612 12.1174V10.8904C33.6612 10.6792 33.8235 10.517 34.0346 10.517H38.2465C38.4576 10.517 38.6199 10.6629 38.6199 10.8741V15.3892C38.6199 15.6003 38.4576 15.7626 38.2465 15.7626H36.8833C36.6721 15.7626 36.5099 15.6003 36.5099 15.3892V14.2045Z" fill="black"></path><path d="M129.305 7.81017C129.3 7.80528 129.294 7.80283 129.286 7.80283H129.084C129.074 7.80283 129.066 7.80446 129.061 7.80854C129.054 7.81262 129.049 7.81914 129.046 7.82648L128.858 8.25125L128.671 7.82648C128.668 7.81833 128.663 7.81262 128.656 7.80854C128.65 7.80446 128.642 7.80283 128.633 7.80283H128.426C128.419 7.80283 128.412 7.80528 128.407 7.81017C128.402 7.81506 128.399 7.82159 128.399 7.82892V8.62547C128.399 8.63362 128.402 8.63933 128.407 8.64503C128.412 8.64993 128.417 8.65237 128.425 8.65237H128.546C128.553 8.65237 128.559 8.64993 128.564 8.64503C128.569 8.64014 128.571 8.63362 128.571 8.62628V8.02459L128.768 8.46159C128.772 8.47138 128.778 8.4779 128.783 8.48198C128.788 8.48605 128.796 8.48768 128.807 8.48768H128.904C128.915 8.48768 128.924 8.48605 128.929 8.48198C128.935 8.4779 128.94 8.47138 128.944 8.46159L129.14 8.02459V8.62628C129.14 8.63443 129.143 8.64014 129.148 8.64585C129.153 8.65074 129.159 8.65319 129.167 8.65319H129.287C129.295 8.65319 129.301 8.65074 129.305 8.64585C129.31 8.64096 129.312 8.63443 129.312 8.62628V7.82974C129.312 7.8224 129.31 7.81506 129.305 7.81017ZM128.214 7.81017C128.209 7.80528 128.203 7.80283 128.195 7.80283H127.524C127.516 7.80283 127.509 7.80528 127.504 7.81017C127.499 7.81588 127.497 7.8224 127.497 7.83055V7.93573C127.497 7.94388 127.499 7.9504 127.504 7.9553C127.509 7.96019 127.516 7.96263 127.524 7.96263H127.769V8.62384C127.769 8.63199 127.772 8.6377 127.776 8.6434C127.782 8.6483 127.788 8.65156 127.795 8.65156H127.922C127.929 8.65156 127.935 8.64911 127.941 8.6434C127.947 8.6377 127.949 8.63199 127.949 8.62384V7.96263H128.195C128.203 7.96263 128.209 7.96019 128.214 7.9553C128.219 7.9504 128.222 7.94388 128.222 7.93573V7.83055C128.222 7.8224 128.219 7.81588 128.214 7.81017ZM113.465 4.81315C113.002 4.56856 112.622 4.18863 112.377 3.72554C112.349 3.67337 112.309 3.63097 112.261 3.60162C112.212 3.57227 112.156 3.55596 112.098 3.55596C111.98 3.55596 111.872 3.622 111.818 3.72554C111.573 4.18863 111.193 4.56856 110.729 4.81315C110.626 4.86777 110.56 4.97539 110.56 5.09279C110.56 5.2102 110.626 5.31782 110.729 5.37244C111.193 5.61703 111.573 5.99696 111.818 6.46004C111.846 6.51222 111.886 6.55462 111.934 6.58397C111.983 6.61332 112.039 6.62962 112.098 6.62962C112.215 6.62962 112.323 6.56359 112.377 6.46004C112.622 5.99696 113.002 5.61703 113.465 5.37244C113.569 5.31782 113.634 5.2102 113.634 5.09279C113.634 4.97539 113.568 4.86777 113.465 4.81315ZM127.11 9.69677C126.772 9.07062 126.297 8.57084 125.684 8.19825C125.07 7.82729 124.354 7.64141 123.537 7.64141C122.72 7.64141 122.003 7.82729 121.389 8.19825C120.776 8.57084 120.301 9.07062 119.963 9.69677C119.626 10.3237 119.457 11.02 119.457 11.7847C119.457 12.5495 119.626 13.2449 119.963 13.8719C120.301 14.4989 120.776 14.9978 121.389 15.3696C122.003 15.7414 122.719 15.9272 123.537 15.9272C124.355 15.9272 125.07 15.7414 125.684 15.3696C126.298 14.9978 126.772 14.4989 127.11 13.8719C127.447 13.2449 127.616 12.5495 127.616 11.7847C127.616 11.02 127.447 10.3237 127.11 9.69677ZM125.34 12.9897C125.205 13.3591 124.99 13.655 124.695 13.8776C124.399 14.0994 124.013 14.2102 123.537 14.2102C123.061 14.2102 122.674 14.0994 122.378 13.8776C122.083 13.655 121.868 13.3591 121.733 12.9897C121.599 12.6204 121.532 12.2185 121.532 11.7847C121.532 11.351 121.599 10.9499 121.733 10.5789C121.868 10.2096 122.083 9.91363 122.378 9.69187C122.674 9.4693 123.06 9.35923 123.537 9.35923C124.014 9.35923 124.399 9.4693 124.695 9.69187C124.99 9.91363 125.205 10.2096 125.34 10.5789C125.474 10.9499 125.541 11.3518 125.541 11.7847C125.541 12.2177 125.474 12.6196 125.34 12.9897ZM119.036 7.67728C118.891 7.65364 118.707 7.64304 118.493 7.64304C117.99 7.64304 117.54 7.8012 117.141 8.12406C116.797 8.39963 116.525 8.77793 116.323 9.25406V7.80283H114.397V15.765H116.308V12.481C116.308 11.9201 116.4 11.4203 116.582 10.9833C116.765 10.5463 117.024 10.1998 117.36 9.94869C117.694 9.69513 118.088 9.56795 118.541 9.56795C118.752 9.56795 118.922 9.58099 119.054 9.61279C119.186 9.64214 119.3 9.67638 119.39 9.71307V7.75473C119.301 7.72538 119.181 7.70255 119.036 7.67565V7.67728ZM111.082 7.80365L107.533 10.181L105.089 4.04188H103.572L99.0838 15.3321C98.7544 16.1629 99.3659 17.0646 100.259 17.0646C100.385 17.0646 100.509 17.0458 100.628 17.01C100.747 16.9741 100.86 16.9203 100.965 16.8502L106.532 13.1153L107.494 15.7658H109.758L108.245 11.9657L111.082 10.0628V15.7658H113.057V7.80365H111.082ZM101.737 14.0659L104.31 6.99732L105.87 11.2956L101.737 14.0659Z" fill="black"></path></g></svg></a></div></div></div></section> </div></div></div><div id="16361a86-a6d1-4e82-8333-64c2914e4b32" class="widget widget-popup widget-popup-popup-1"><div data-ux="ModalPopup" id="popup-widget53651" data-edit-interactive="true" data-aid="POPUP_MODAL" class="x-el x-el-div x-el c1-1 c1-2 c1-5z c1-n c1-3b c1-60 c1-7h c1-c2 c1-7u c1-1j c1-1k c1-1l c1-1m c1-cr c1-4k c1-cs c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="ModalBody" role="dialog" class="x-el x-el-div x-el c1-1 c1-2 c1-b c1-c c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d4 c1-d5 c1-d6 c1-ct c1-10 c1-cu c1-cv c1-cw c1-cx c1-cy c1-cz c1-d0 c1-d1 c1-d2 c1-d3 c1-d c1-d4 c1-d5 c1-d6 c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5z c1-u c1-50 c1-3 c1-d7 c1-1u c1-d8 c1-d9 c1-da c1-db c1-1s c1-1t c1-1v c1-1w c1-b c1-c c1-dc c1-19 c1-cm c1-dd c1-de c1-df c1-dg c1-2i c1-dh c1-di c1-dj c1-dk c1-dl c1-dm c1-10 c1-dn c1-do c1-dp c1-10 c1-dn c1-do c1-dp c1-d c1-dq c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-u c1-2s c1-4d c1-4e c1-37 c1-27 c1-4h c1-7u c1-7l c1-b c1-c c1-d c1-e c1-f c1-g"><svg viewBox="0 0 24 24" fill="currentColor" width="28" height="28" data-ux="Icon" id="popup-widget53651-close-icon" class="x-el x-el-svg c1-1 c1-2 c1-2x c1-14 c1-20 c1-4q c1-dr c1-4r c1-ds c1-1i c1-dt c1-3 c1-du c1-dv c1-b c1-c c1-d c1-e c1-f c1-g"><path fill-rule="evenodd" d="M17.999 4l-6.293 6.293L5.413 4 4 5.414l6.292 6.293L4 18l1.413 1.414 6.293-6.292 6.293 6.292L19.414 18l-6.294-6.293 6.294-6.293z"></path></svg></div><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-dw c1-t c1-dx c1-1v c1-1t c1-4k c1-4 c1-dy c1-da c1-b c1-c c1-dz c1-e0 c1-do c1-d c1-e c1-f c1-g"><div data-ux="Block" class="x-el x-el-div c1-1 c1-2 c1-5y c1-e1 c1-e2 c1-aq c1-e3 c1-3n c1-b c1-c c1-d c1-e c1-f c1-g"><h3 role="heading" aria-level="3" data-ux="HeadingMiddle" data-aid="POPUP_TITLE_RENDERED" data-typography="HeadingGamma" class="x-el x-el-h3 c1-1 c1-2 c1-1f c1-1g c1-8e c1-3e c1-3f c1-1y c1-1z c1-15 c1-2x c1-2y c1-2z c1-30 c1-31 c1-32 c1-33">Nous recrutons !</h3><div data-ux="Text" data-aid="POPUP_DESCRIPTION_RENDERED" data-typography="BodyAlpha" class="x-el c1-1 c1-2 c1-1f c1-1g c1-2t c1-1y c1-1z c1-2u c1-b c1-4o c1-c c1-2z c1-d c1-e c1-f c1-g x-rt"><p style="margin:0"><span><strong class="x-el x-el-span c1-1c c1-1d c1-b c1-8v c1-34 c1-4t c1-8w">Concierge</strong></span></p></div><a data-ux-btn="primary" data-ux="ButtonPrimary" data-aid="CTA_RENDERED" href="/emplois" target="" data-tccl="ux2.POPUP.popup1.Button.Primary.53652.click,click" data-page="2e2cae28-0f8b-4291-8ceb-7e347651d804" id="popup-widget53651-cta" data-typography="ButtonAlpha" class="x-el x-el-a c1-3s c1-3t c1-1i c1-ao c1-ap c1-w c1-3b c1-5y c1-1e c1-1g c1-1f c1-3a c1-t c1-4 c1-3n c1-aq c1-25 c1-27 c1-ar c1-as c1-at c1-au c1-b c1-4t c1-av c1-c c1-aw c1-ax c1-d c1-e c1-f c1-g">Voir section Emplois</a></div></div></div></div></div></div><div id="3924d261-b5d5-46b3-b24d-455c6b2038a0" class="widget widget-trustedsite widget-trustedsite-trusted-site-1"></div><div id="56fa10a0-e7f5-4d3b-be3d-0ab493495510" class="widget widget-messaging widget-messaging-messaging-1"></div><div id="dd97c564-4bdb-4681-8051-8ebb61e2fb74" class="widget widget-cookie-banner widget-cookie-banner-cookie-1"></div></div></div></div> | |
| 640 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/81c8de58e641eaee/script.js" crossorigin></script> | |
| 641 | −<script src="//img1.wsimg.com/ceph-p3-01/website-builder-data-prod/static/widgets/UX.4.51.17.js" crossorigin></script> | |
| 642 | −<script src="//img1.wsimg.com/blobby/go/46581f8f-a647-47c3-ad6f-5b91b2f6b85d/gpub/d377e8e93e935e85/script.js" crossorigin></script> | |
| 643 | −<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SW4SSQT41" crossorigin></script> | |
| 644 | −<script>"use strict";Core.utils.onAllowCookieTracking(() => {var _window$dataLayer, _window$dataLayer$, _window$dataLayer2, _window$dataLayer2$;window.dataLayer && Array.isArray(window.dataLayer) && ((_window$dataLayer = window.dataLayer) === null || _window$dataLayer === void 0 ? void 0 : (_window$dataLayer$ = _window$dataLayer[0]) === null || _window$dataLayer$ === void 0 ? void 0 : _window$dataLayer$[0]) === "consent" && ((_window$dataLayer2 = window.dataLayer) === null || _window$dataLayer2 === void 0 ? void 0 : (_window$dataLayer2$ = _window$dataLayer2[0]) === null || _window$dataLayer2$ === void 0 ? void 0 : _window$dataLayer2$[1]) === "default" && (window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, window.gtag("consent", "update", {ad_user_data: "granted",ad_personalization: "granted",ad_storage: "granted",analytics_storage: "granted"}));}); | |
| 645 | −"use strict";window.gtag = window.gtag || function () {window.dataLayer.push(arguments);}, gtag("js", new Date()), gtag("set", "developer_id.dZTZmYj", !0); | |
| 646 | −"use strict";window._gaID = "G-3SW4SSQT41", gtag("config", "G-3SW4SSQT41"); | |
| 647 | −var t=document.createElement("script");t.type="text/javascript",t.addEventListener("load",()=>{window.tti.calculateTTI(({name:t,value:e}={})=>{let i={"wam_site_hasPopupWidget":true,"wam_site_hasMessagingWidget":false,"wam_site_headerTreatment":false,"wam_site_hasSlideshow":false,"wam_site_hasFreemiumBanner":false,"wam_site_homepageFirstWidgetType":"CONTENT","wam_site_homepageFirstWidgetPreset":"content6","wam_site_businessCategory":"realestaterentalagency","wam_site_theme":"layout12","wam_site_locale":"en-US","wam_site_fontPack":"fjalla-one","wam_site_cookieBannerEnabled":false,"wam_site_membershipEnabled":true,"wam_site_hasHomepageHTML":false,"wam_site_hasHomepageShop":false,"wam_site_hasHomepageOla":false,"wam_site_hasHomepageBlog":false,"wam_site_hasShop":false,"wam_site_hasOla":false,"wam_site_planType":"business","wam_site_isHomepage":false,"wam_site_htmlWidget":false};window.networkInfo&&window.networkInfo.downlink&&(i=Object.assign({},i,{["wam_site_networkSpeed"]:window.networkInfo.downlink.toFixed(2)})),window.tti.setCustomProperties(i),window.tti._collectVitals({name:t,value:e})})}),t.setAttribute("src","//img1.wsimg.com/traffic-assets/js/tccl-tti.min.js"),document.body.appendChild(t);</script> | |
| 648 | −<script defer src="//img1.wsimg.com/signals/js/clients/scc-c2/scc-c2.min.js" crossorigin></script> | |
| 649 | −<script>"use strict";Core.utils.onAllowCookieTracking(function () {const queryString = window.location.search;const urlParams = new URLSearchParams(queryString);const whiteList = ['gclid', 'fbclid', 'gdan_clid'];const belongToList = list => item => list.includes(item);const belongToWhiteList = belongToList(whiteList);Array.from(urlParams).forEach(param => {const [queryKey, queryResult] = param;if (!belongToWhiteList(queryKey)) return;localStorage.setItem(queryKey, queryResult);});}); | |
| 650 | −"use strict";Core.utils.onAllowCookieTracking(() => {if (!document.cookie.includes("x-visitor-id")) {!function (o, i, e = 60) {const t = new Date();t.setTime(t.getTime() + 864e5 * e);const n = `expires=${t.toUTCString()}`;document.cookie = `${o}=${i};${n};path=/`;}("x-visitor-id", crypto.randomUUID(), 60);}});</script> | |
| 651 | −<script async src="https://cdn.trustedsite.com/js/1.js?position=bottomLeft&offset=15" crossorigin></script></body></html> | |
| \ No newline at end of file | ||
modified
tests/fixtures/groupe_theoret/index.json
+4 −88
@@ -1,93 +1,9 @@ | ||
| 1 | 1 | { |
| 2 | − "43776db38af328a37b02": { | |
| 2 | + "9aae693fe1883df226b6": { | |
| 3 | 3 | "method": "GET", |
| 4 | − "url": "https://locationappartement.ca/appartements-%C3%A0-louer", | |
| 4 | + "url": "https://locationappartement.ca/appartements-a-louer", | |
| 5 | 5 | "status": 200, |
| 6 | − "content_type": "text/html;charset=utf-8", | |
| 7 | − "file": "43776db38af328a37b02.html" | |
| 8 | − }, | |
| 9 | − "e997ee4c8b84c6cc8dec": { | |
| 10 | − "method": "GET", | |
| 11 | − "url": "https://locationappartement.ca/5080-5100-pie-ix", | |
| 12 | − "status": 200, | |
| 13 | − "content_type": "text/html;charset=utf-8", | |
| 14 | − "file": "e997ee4c8b84c6cc8dec.html" | |
| 15 | − }, | |
| 16 | − "4c50a9dc04db74d16bfe": { | |
| 17 | − "method": "GET", | |
| 18 | − "url": "https://locationappartement.ca/2660-de-la-rennaissance", | |
| 19 | − "status": 200, | |
| 20 | − "content_type": "text/html;charset=utf-8", | |
| 21 | − "file": "4c50a9dc04db74d16bfe.html" | |
| 22 | − }, | |
| 23 | − "41f1165298d3e3b4f6d3": { | |
| 24 | − "method": "GET", | |
| 25 | − "url": "https://locationappartement.ca/15-yvon-plourde", | |
| 26 | − "status": 200, | |
| 27 | − "content_type": "text/html;charset=utf-8", | |
| 28 | − "file": "41f1165298d3e3b4f6d3.html" | |
| 29 | − }, | |
| 30 | − "cd1789d4455c838f1099": { | |
| 31 | − "method": "GET", | |
| 32 | − "url": "https://locationappartement.ca/1064-%C3%A0-1108-mc-kenzie", | |
| 33 | − "status": 200, | |
| 34 | − "content_type": "text/html;charset=utf-8", | |
| 35 | − "file": "cd1789d4455c838f1099.html" | |
| 36 | − }, | |
| 37 | − "6f408e37a7aaa5434924": { | |
| 38 | − "method": "GET", | |
| 39 | − "url": "https://locationappartement.ca/1305-fran%C3%A7ois-paquin", | |
| 40 | − "status": 200, | |
| 41 | − "content_type": "text/html;charset=utf-8", | |
| 42 | − "file": "6f408e37a7aaa5434924.html" | |
| 43 | − }, | |
| 44 | − "fbd90a752a5446ed3886": { | |
| 45 | − "method": "GET", | |
| 46 | − "url": "https://locationappartement.ca/1370-1380-fran%C3%A7ois-paquin", | |
| 47 | − "status": 200, | |
| 48 | − "content_type": "text/html;charset=utf-8", | |
| 49 | − "file": "fbd90a752a5446ed3886.html" | |
| 50 | − }, | |
| 51 | − "3075cc85b926b1b7d508": { | |
| 52 | − "method": "GET", | |
| 53 | − "url": "https://locationappartement.ca/1405-fran%C3%A7ois-paquin", | |
| 54 | − "status": 200, | |
| 55 | − "content_type": "text/html;charset=utf-8", | |
| 56 | − "file": "3075cc85b926b1b7d508.html" | |
| 57 | − }, | |
| 58 | − "9f0e3873c31695c2407d": { | |
| 59 | − "method": "GET", | |
| 60 | − "url": "https://locationappartement.ca/1390-fran%C3%A7ois-paquin", | |
| 61 | − "status": 200, | |
| 62 | − "content_type": "text/html;charset=utf-8", | |
| 63 | − "file": "9f0e3873c31695c2407d.html" | |
| 64 | − }, | |
| 65 | − "fc3a16b603faf21c3195": { | |
| 66 | − "method": "GET", | |
| 67 | − "url": "https://locationappartement.ca/100-110-place-brosseau", | |
| 68 | − "status": 200, | |
| 69 | − "content_type": "text/html;charset=utf-8", | |
| 70 | − "file": "fc3a16b603faf21c3195.html" | |
| 71 | − }, | |
| 72 | − "69cfa9d11f6622adb5a8": { | |
| 73 | − "method": "GET", | |
| 74 | − "url": "https://locationappartement.ca/140-150-place-brosseau", | |
| 75 | − "status": 200, | |
| 76 | − "content_type": "text/html;charset=utf-8", | |
| 77 | − "file": "69cfa9d11f6622adb5a8.html" | |
| 78 | − }, | |
| 79 | − "8fc007e2225ba3535dae": { | |
| 80 | − "method": "GET", | |
| 81 | − "url": "https://locationappartement.ca/1602-2%C3%A8me-avenue", | |
| 82 | − "status": 200, | |
| 83 | − "content_type": "text/html;charset=utf-8", | |
| 84 | − "file": "8fc007e2225ba3535dae.html" | |
| 85 | − }, | |
| 86 | − "e104ab030a5d234595c0": { | |
| 87 | − "method": "GET", | |
| 88 | − "url": "https://locationappartement.ca/1611-3%C3%A8me-avenue", | |
| 89 | − "status": 200, | |
| 90 | − "content_type": "text/html;charset=utf-8", | |
| 91 | − "file": "e104ab030a5d234595c0.html" | |
| 6 | + "content_type": "text/html; charset=utf-8", | |
| 7 | + "file": "9aae693fe1883df226b6.html" | |
| 92 | 8 | } |
| 93 | 9 | } |
| \ No newline at end of file | ||
| 94 | 10 | |