/*
	(c)2021 - visuallizard.com

	General styles.
	Template, view, plugin and element specific, etc.

    colors

    light grey-blue - #bcd2dc

*/

body.modal-open {
    overflow-y: hidden;
}
.button {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: none;
}
.button.blue {
    background-color: #004565;
}
img { max-width: 100%; }
li[data-pid="8"] a {
    padding: 0.75rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: none;
    background: #c01327;
    color: #fff;
}
h2 > span { color: #c01327; }



.metagrid {
	display: grid;
	grid-template-columns: max-content;
	grid-template-rows: 1fr;
	row-gap: .5rem;
	column-gap: 1rem;
	margin-block: 0;
}
.metagrid dd + dt,
.metagrid dt + dd,
.metagrid dd + dd {
	margin-top: 0;
}
.metagrid dt {
	grid-column-start: 1;
	grid-column-end: 2;
}
.metagrid dd {
	grid-column-start: 2;
	grid-column-end: 3;

	font-weight: normal;
}


/* ! [[ Bulletin Module ]] */
/* ! Articles - general */
.articles-block {
	padding: 1rem 0;
	margin-bottom: 2rem;
}
.articles-block .articles-heading {
	text-align: center;
	margin-bottom: 0;
}
.articles-block .more-all {
	text-align: center;
}

.article-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 1rem;
	align-items: stretch;
}
	.article-item {
		position: relative;
		padding: 0;
		margin: 1rem 0 2rem;

		display: flex;
		flex-direction: column;
	}
		.article-title {
			margin: 0 0 .5rem 0;
			font-size: 1rem;
			font-weight: normal;
		}
		.article-item .article-title a {
			text-decoration: none;
		}
		.article-item .article-title a:hover {
			text-decoration: underline;
		}
		.article-date {
			display: block;
			margin-bottom: .5rem;
			font-weight: 600;
			order: -1;
		}
	.article-figure {
		margin: 0;
		overflow: hidden;
		position: relative;
	}
		.article-img {
			display: block;
			width: 100%;
			height: auto;

			transition: transform .2s ease-in;
		}
		.article-item:hover .article-img {
			transform: scale(1.05);
		}
		.article-figure figcaption {
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			padding: .5rem .75rem .3rem;
			background: hsla(0, 0%, 0%, .5);
			color: #fff;
			font-size: .75rem;
		}
	.article-details {
		display: flex;
		flex-direction: column;
		padding: .5rem 0 0;
		flex-grow: 1;
	}
	.article-details > :last-child {
		margin-bottom: 0;
	}
		.article-brief {
			margin-bottom: auto;
		}
		.article-brief p {

		}
	.article-item .more {

	}

/* ! Articles - Index */
	.articles-index .more-all {
		display: none;
	}

/* ! Articles - Latest */
	.articles-latest {

	}
	.articles-latest .article-items {

	}
	.articles-latest .article-item {

	}
	.articles-latest .pagination-links {
		display: none;
	}

/* ! Articles - Single article (Bulletin view) */
	.article-view {
		padding-top: 1rem;
	}
	.article-view .article-headline {

	}
	.article-view .article-figure {
		max-width: 1200px;
		margin-bottom: 1rem;
	}
	.article-view .article-img {
		max-width: 100%;
	}
	.article-view .article-date {
		margin-bottom: 1rem;
	}

/* ! Archive List */
	.archive-list {
		list-style: none;
		margin: 0;
		padding-left: 1rem;
	}
	.archive-list.year {
		margin-top: 1rem;
	}
		.archive-list.month {

		}
			.archive-articles {
				padding-left: 1rem
			}



/* ! [[ Event Module ]] */
/* ! Events - general */
.events-block {

}
.events-block .events-heading {
	text-align: center;
	margin-bottom: 0;
}
.events-block .more-all {
	text-align: center;
	margin-bottom: 0;
}
.events-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 1rem;
	align-items: stretch;
}
	.event-item {
		position: relative;
		padding: 0;
		margin: 1rem 0 2rem;

		display: flex;
		flex-direction: column;
	}
		.event-title {
			margin: 0 0 .5rem 0;
			font-size: 1rem;
			font-weight: normal;
			text-wrap: balance;
		}
		.event-item .event-title a {
			text-decoration: none;
		}
		.event-item .event-title a:hover {
			text-decoration: underline;
		}
		.event-meta {
			margin-bottom: .5rem;
			font-weight: 600;
		}
			.event-meta > * {
				margin-bottom: .25rem;
			}
			.event-dates {
				font-size: inherit;
			}
			.event-dates .event-range {

			}
			.event-dates .event-date {

			}
			.event-location {
				margin: 0;
				font-size: inherit;
			}
	.event-figure {
		margin: 0;
		overflow: hidden;
		position: relative;
	}
		.event-img {
			display: block;
			width: 100%;
			height: auto;

			transition: transform .2s ease-in;
		}
		.event-item:hover .event-img {
			transform: scale(1.05);
		}
		.event-figure figcaption {
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			padding: .5rem .75rem .3rem;
			background: hsla(0, 0%, 0%, .5);
			color: #fff;
			font-size: .75rem;
		}
	.event-details {
		display: flex;
		flex-direction: column;
		padding: .5rem 0 0;
		flex-grow: 1;
	}
	.event-details > :last-child {
		margin-bottom: 0;
	}
		.event-brief {
			margin-bottom: auto;
		}
		.event-brief p {
			margin-bottom: .5rem;
			font-size: inherit;
		}
	.event-item .more {
		margin-block: 1rem;
	}
		.event-item .more a {

		}

/* ! Events - Filter */
	.events-filter {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 1rem;

		margin: 1rem auto;
		padding: 1rem;

		background-color: #eee;
	}
		.events-filter [class^="input-"] {
			margin-bottom: 0;
		}
		.events-filter .input-daterange {
			display: flex;
			column-gap: .25rem;
		}
		.events-filter .button {
			margin-top: auto;
		}

/* ! Events - Index */
	.events-index .more-all {
		display: none;
	}
	.events-index .events-heading {
		/* display: none; */
	}
	.events-index.event-items {

	}
		.events-index .event-item {
			display: flex;
			/* flex-direction: row; */
			gap: 1rem;
		}
		.events-index .event-figure {
			max-width: 300px;
			/* flex-basis: 20%; */
			align-self: flex-start;
		}
		.events-index .event-img {
			/* aspect-ratio: 1/1; */
			object-fit: cover;
		}
		.events-index .event-details {
			/* flex-basis: 75%; */
			flex-grow: 0;
		}
		.events-index .event-title {

		}
		.events-index .event-meta {
			order: -1;
		}
		.events-index .more {

		}
		.events-index .more a {

		}

/* ! Events - Featured */
	.events-featured {

	}
	.events-featured .events-items {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
		grid-column-gap: 4rem;
		grid-row-gap: 0;
	}
		.events-featured .event-item {
			border-radius: var(--border-radius);
			background-color: #fff;
			overflow: hidden;
		}
		.events-featured .event-details {
			padding: 1rem 2rem;
		}
		.events-featured .event-title {
			font-size: 32px;
			margin-bottom: 1rem;
		}
		.events-featured .event-img  {
			aspect-ratio: 2/1;
			object-fit: cover;
		}


	.events-upcoming .event-item:nth-child(n+4) {
		display: none; /* limit to first 3 items */
	}

	.events-featured {
		margin-bottom: 4rem;
		padding: 2rem 4rem;

		background-color: #eee;
	}
		.events-featured .event-item:nth-child(n+5) {
			/* Optionally limit number of Featured event items by CSS */
			/* display: none;  limit to first 4 items */
		}

/* ! Events - Single event (view) */
	.event-view {

		margin-bottom: 2rem;
		display: flex;
		flex-wrap: wrap;
		column-gap: 2rem;
	}
	.event-view .event-content {
		flex-grow: 1;

	}
	.event-view .event-headline {
		width: 100%;
	}
	.event-view .event-figure {
		max-width: 1200px;
		margin-bottom: 1rem;
	}
	.event-view .event-img {
		max-width: 100%;
	}

	.event-view .event-meta {
		flex-basis: 100%;

		padding: 1rem;
		margin-bottom: 1rem;

		background-color: #eee;
		color: var(--primary);

		font-weight: normal;
	}
		.event-view .event-date {
			display: inline;
		}

	@media (min-width: 1200px) {
		.event-view {
			margin-top: 2rem;
		}
		.event-view .event-content {
			flex-basis: 70%;
		}
		.event-view .event-meta {
			flex-basis: calc(30% - 2rem);
			order: 1;
			margin-bottom: auto;
		}
	}



/* ! [[ Salesforce invest in winnipeg form ]] */
.fm-form h3 {
    font-size: 2.25rem;
}
.fm-form h3 { margin-top: 0; }
.fm-form div.fieldgroup {
    display: block;
    position: relative;
    margin: 0 0 2rem 0;
}
    .fm-form div.input {
        display: block;
        position: relative;
        margin: 0 0 1rem 0;
    }
        .fm-form div.input label {
            display: block;
            margin: 0 0 0.5rem 0;
            font-family: "Montserrat", sans-serif;
            font-size: 1rem;
            font-weight: 500;
        }
        .fm-form div.input input,
        .fm-form div.input textarea,
        .fm-form div.input select {
            padding: 0.5rem;
            font-family: "Montserrat", sans-serif;
            font-size: 1.125rem;
            font-weight: 300;
        }
        .fm-form div.input textarea {
            height: 120px;
            font-size: 0.875rem;
        }
        .fm-form div.input input::placeholder,
        .fm-form div.input textarea::placeholder {
            font-weight: 300;
            color: #999;
        }
    .fm-form div.g-recaptcha {
        display: block;
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .fm-form button[type="submit"] {
        display: block;
        position: relative;
        width: 100%;
        padding: 15px 20px;
        border: none;
        border-radius: 40px;
        font-family: "Montserrat", sans-serif;
        font-size: 1.25rem;
        font-weight: 500;
        background: #c01327;
        color: #fff;
    }



/* ! [[ General List module styles ]] */
/* ! [ recognition items ] */
div.recognition-set {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
}
    div.recognition-set div.recognition-item {
        display: flex;
        position: relative;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        flex: 1 0 12%;
        max-width: 12%;
        padding: 0.5rem;
        text-align: center;
    }
    div.recognition-set div.recognition-item#canadas-best-locations {
        flex: 1 0 20%;
        max-width: 20%;
    }
        div.recognition-set div.recognition-item#canadas-best-locations figure {
            display: block;
            flex: 0 0 50%;
            max-width: 50%;
        }
        div.recognition-set div.recognition-item#canadas-best-locations span {
            display: block;
            flex: 0 0 48%;
            max-width: 48%;
            font-size: 0.75rem;
            text-align: left;
        }
    div.recognition-set div.recognition-item#intelligent-cities-forum {
        border-left: 1px solid #999;
        border-right: 1px solid #999;
    }
        div.recognition-item figure {
            max-width: 100px;
            padding: 0;
            margin: 0 auto;
        }
        div.recognition-item p {
            display: block;
            width: 100%;
            margin: 0;
            font-size: 0.75rem;
        }
        div.recognition-item p span.h1 {
            font-size: 2.75rem;
        }

/* ! [ advantage-items ] */
div.advantage-set {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 0;
    padding: 0;
    margin: 0;
    width: 60%;
}
   div.advantage-item {
        display: block;
        position: relative;
        flex: 0 0 49%;
        max-width: 49%;
        padding: 1rem;
        transition: all 0.5s ease;
    }
   div.advantage-item:hover {
        background: #004565;
    }
       div.advantage-item h3 {
            margin-top: 0;
            font-size: 1.75rem;
            color: #004565;
        }
        div.advantage-item:hover h3 { color: #fff; }
       div.advantage-item p {
            padding: 0 1.5rem 0 0;
            margin-bottom: 0;
            color: #000;
        }
        div.advantage-item:hover p { color: #fff; }
div.advantage-photos {
    display: block;
    position: relative;
    flex: 0 0 36%;
    max-width: 36%;
    min-height: 650px;
}
    div.advantage-photos figure {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
        opacity: 0;
        transition: all 0.5s ease;
    }
    div.advantage-photos figure.top {
        z-index: 1;
        opacity: 1;
    }

/* ! [ story-items ] */
div.story-set {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 0;
    background: #fff;
}
    div.story-set div.success-modal {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: -1;
        padding: 0;
        background: rgba(0,0,0,0.8);
        opacity: 0;
        transition: all 0.5s ease;
    }
    div.story-set div.success-modal.active {
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        z-index: 100;
        opacity: 1;
    }
        div.story-set div.success-modal.active a.close {
            display: block;
            position: absolute;
            top: -50px;
            right: 0;
            padding: 0.25rem;
            margin: 0;
            border: 1px solid #fff;
            border-radius: 100%;
            text-align: center;
            line-height: 1;
            background: #000;
            color: #fff;
            cursor: pointer;
        }
        div.story-set div.success-modal div.video-container {
            display: block;
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            overflow: visible;
            color: #fff;
        }
            div.success-modal div.video-container > iframe {
                display: block;
                position: relative;
                width: 100%;
                margin: 0 0 1.5rem 0;
            }
            div.success-modal div.video-container > div.video-description {
                display: block;
                position: relative;
                z-index: 1;
                width: 100%;
                max-width: 640px;
                text-align: left;
                padding: 1rem 0;
            }
            div.success-modal div.video-container > div.video-description p {
                font-size: 0.875rem;
            }
            div.success-modal div.video-container > div.video-description p.title {
                font-size: 1.25rem;
                font-weight: 600;
                line-height: 1.1;
            }
    div.story-set div.success-item {
        display: block;
        position: relative;
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0;
        text-align: left;
        background: #000;
        color: #fff;
        cursor: pointer;
    }
        div.story-set div.success-item > a {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
        }
        div.story-set div.success-item figure {
            display: block;
            position: relative;
            padding: 0;
            margin: 0;
        }
            div.story-set div.success-item figure img.play {
                display: block;
                position: absolute;
                z-index: 1;
                top: 50%;
                left: 50%;
                width: 120px;
                height: 120px;
                margin: -60px 0 0 -60px;
                opacity: 0.6;
            }
        div.story-set div.success-item h3 {
            display: block;
            position: absolute;
            top: auto;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
            padding: 1.5rem;
            margin: 0;
            font-size: 1.75rem;
            font-weight: 500;
            line-height: 1.25;
            background: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 80%);
        }

/* ! [ leader-items ] */
div.leader-set {
    display: block;
    position: relative;
    width: 90%;
    padding: 2rem 0 0 0;
    margin: 2rem auto 0 auto;
    border-top: 1px solid #ccc;
}
    div.leader-item {
        display: block;
        position: relative;
    }
        div.leader-item > a {
            display: block;
            position: relative;
            width: 100%;
            padding: 0 2rem;
        }
            div.leader-item img {
                display: block;
                max-width: 100%;
            }
    div.leader-set .slick-arrow { width: 20px; }
    div.leader-set .slick-prev { left: -30px; }
    div.leader-set .slick-next { right: -30px; }

/* ! [ industry-items ] */
div.industry-set {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}
    div.industry-item {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 0 1 33.3%;
        max-width: 33.3%;
        min-height: 180px;
    }
    div.industry-item:nth-child(1),
    div.industry-item:nth-child(2),
    div.industry-item:nth-child(3),
    div.industry-item:nth-child(4) {
        align-items: stretch;
        max-width: 25%;
        min-height: 480px;
    }
    div.industry-item > figure {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        overflow: hidden;
        margin: 0;
    }
        div.industry-item > figure > img {
            display: block;
            position: relative;
            max-width: 100%;
        }
        div.industry-item > div.industry-copy {
            display: flex;
            position: absolute;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 0;
            padding: 1rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(5, 40, 60, 0.9) 40%, rgba(5, 40, 60, 0.6));
            color: #fff;
            cursor: pointer;
            opacity: 1;
            transition: all 0.5s ease;
        }
        div.industry-item.active > div.industry-copy {
            opacity: 0;
        }
        div.industry-item:nth-child(1) > div.industry-copy,
        div.industry-item:nth-child(2) > div.industry-copy,
        div.industry-item:nth-child(3) > div.industry-copy,
        div.industry-item:nth-child(4) > div.industry-copy {
            opacity: 0;
            transition: all 0.5s ease;
        }
        div.industry-item.active:nth-child(1) > div.industry-copy,
        div.industry-item.active:nth-child(2) > div.industry-copy,
        div.industry-item.active:nth-child(3) > div.industry-copy,
        div.industry-item.active:nth-child(4) > div.industry-copy {
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.6));
            opacity: 1;
        }
            div.industry-item > h3 {
                z-index: 1;
                margin-top: 0;
                padding: 0 1rem;
                font-size: 1.75rem;
                text-align: center;
                color: #fff;
                opacity: 1;
                transition: all 0.5s ease;
            }
            div.industry-item.active > h3 {
                opacity: 0;
            }
            div.industry-item a {
                color: inherit;
            }

/* ! [ fact-items ] */
div.fact-set {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
}
div.facts.statistics div.fact-set { padding-bottom: 3rem; }
div.facts.currency div.fact-set {  }
div.facts.currency a#currency-toggle {
    display: flex;
    position: relative;
    justify-content: space-between;
    width: auto;
    max-width: 140px;
    padding: 0;
    margin: 3rem auto 1rem auto;
    border: 1px solid white;
    border-radius: 30px;
    font-size: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}
#currency-toggle:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 0;
    width: 70px;
    height: 26px;
    border-radius: 30px;
    background: #c01327;
}
#currency-toggle.switch:before {
    left: auto;
    right: 0;
}
    #currency-toggle span {
        display: block;
        position: relative;
        z-index: 1;
        width: 50%;
        padding: 0.25rem 0.5rem;
        border-radius: 30px;
        font-weight: 600;
        text-align: center;
    }
div.fact-set div.fact-item {
    display: flex;
    flex-direction: column;
    position: relative;
    row-gap: 1rem;
    flex: 0 0 32%;
    max-width: 32%;
    text-align: center;
}
.currency div.fact-set div.fact-item { flex: 0 0 45%; max-width: 45%; }
    div.fact-item h3 {
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 3.125rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #bcd2dc;
    }
    div.fact-item p {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }



/* ! [ guide-items ] */
div.guide-set {
    border-bottom: 1px solid #999;
}
    div.guide-set h2 {
        display: flex;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0 0 0;
        margin: 0 0 2.2rem 0;
        border-top: 1px solid #999;
        font-size: 2.25rem;
    }
        div.guide-set h2 > a {
            display: block;
            position: relative;
            flex: 1 0 70%;
            max-width: 95%;
            z-index: 1;
        }
    div.guide-set h2:first-child { border: none; }
        div.guide-set h2 span {
            display: inline-block;
            width: 50px;
            padding-right: 5px;
            color: #c01327;
            text-align: left;
        }
        div.guide-set h2 span.toggle-indicator {
            display: block;
            position: absolute;
            top: 50%;
            right: 0;
            z-index: 0;
            width: 40px;
            max-height: 40px;
            padding: 0;
            margin-top: -4px;
            border: 1px solid #999;
            border-radius: 100%;
            text-align: center;
            line-height: 1;
            color: #333;
            transition: all 0.2s ease;
        }
        div.guide-set h2.guide-heading-open span.toggle-indicator {
            transform: rotate(180deg);
        }
            div.guide-set h2 span.toggle-indicator svg {
                display: block;
            }
    div.guide-set h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.25rem;
        font-weight: 500;
    }
    div.guide-set h4 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
    }
    div.guide-set div.guide-item {
        display: block;
        position: relative;
        width: 100%;
        height: 0;
        padding: 0 2rem 0 50px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.2s ease;
    }
    div.guide-set div.guide-item.guide-item-open {
        height: auto;
        padding: 0 2rem 2rem 50px;
        visibility: visible;
        opacity: 1;
    }



/* ! [ contact cards ] */
div.contact-set {

}
    div.contact-card {
        display: flex;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        column-gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        background: #fff;
        color: #000;
    }
        div.contact-card div.contact-info {
            display: block;
            position: relative;
            align-self: stretch;
            flex: 0 0 100%;
            max-width: 100%;
            padding: 3rem 2rem;
            order: 1;
        }
            div.contact-info h2 {
                margin: 0 0 0.625rem 0;
                line-height: 1;
            }
            div.contact-info h3 {
                margin-top: 0;
                font-size: 2rem;
                line-height: 1;
                color: #004565;
            }
            div.contact-info p {
                margin: 0 0 1rem 0;
            }
        div.contact-card img {
            display: block;
            position: relative;
            flex: 0 0 36%;
            max-width: 36%;
            height: auto;
            padding: 0;
            margin: 0;
            order: 0;
        }
