<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-CA">
<head profile="http://gmpg.org/xfn/11">

<meta name="viewport" content="width=device-width" />
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' /> 


<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Ottawa Bach Choir  </title>
<meta name="generator" content="WordPress 6.6.2" /><!-- leave this for stats -->
	
	<link rel="stylesheet" href="http://ottawabachchoir.ca/wp-content/themes/vanquishla_theme/style.css?ver=1650138933" type="text/css" media="screen, projection" />
	
<link rel="alternate" type="application/rss+xml" title="Ottawa Bach Choir RSS Feed" href="https://ottawabachchoir.ca/en/feed/" />
<link rel="pingback" href="http://ottawabachchoir.ca/xmlrpc.php" />
<meta name='robots' content='max-image-preview:large' />
<link rel="alternate" href="https://ottawabachchoir.ca/en/home/" hreflang="en" />
<link rel="alternate" href="https://ottawabachchoir.ca/fr/accueil/" hreflang="fr" />
<link rel="alternate" href="https://ottawabachchoir.ca/" hreflang="x-default" />
<link rel='dns-prefetch' href='//www.google.com' />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/ottawabachchoir.ca\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"http:\/\/ottawabachchoir.ca\/wp-includes\/js\/twemoji.js?ver=6.6.2"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

/**
 * Emoji Settings as exported in PHP via _print_emoji_detection_script().
 * @typedef WPEmojiSettings
 * @type {object}
 * @property {?object} source
 * @property {?string} source.concatemoji
 * @property {?string} source.twemoji
 * @property {?string} source.wpemoji
 * @property {?boolean} DOMReady
 * @property {?Function} readyCallback
 */

/**
 * Support tests.
 * @typedef SupportTests
 * @type {object}
 * @property {?boolean} flag
 * @property {?boolean} emoji
 */

/**
 * IIFE to detect emoji support and load Twemoji if needed.
 *
 * @param {Window} window
 * @param {Document} document
 * @param {WPEmojiSettings} settings
 */
( function wpEmojiLoader( window, document, settings ) {
	if ( typeof Promise === 'undefined' ) {
		return;
	}

	var sessionStorageKey = 'wpEmojiSettingsSupports';
	var tests = [ 'flag', 'emoji' ];

	/**
	 * Checks whether the browser supports offloading to a Worker.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {boolean}
	 */
	function supportsWorkerOffloading() {
		return (
			typeof Worker !== 'undefined' &&
			typeof OffscreenCanvas !== 'undefined' &&
			typeof URL !== 'undefined' &&
			URL.createObjectURL &&
			typeof Blob !== 'undefined'
		);
	}

	/**
	 * @typedef SessionSupportTests
	 * @type {object}
	 * @property {number} timestamp
	 * @property {SupportTests} supportTests
	 */

	/**
	 * Get support tests from session.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
	 */
	function getSessionSupportTests() {
		try {
			/** @type {SessionSupportTests} */
			var item = JSON.parse(
				sessionStorage.getItem( sessionStorageKey )
			);
			if (
				typeof item === 'object' &&
				typeof item.timestamp === 'number' &&
				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
				typeof item.supportTests === 'object'
			) {
				return item.supportTests;
			}
		} catch ( e ) {}
		return null;
	}

	/**
	 * Persist the supports in session storage.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {SupportTests} supportTests Support tests.
	 */
	function setSessionSupportTests( supportTests ) {
		try {
			/** @type {SessionSupportTests} */
			var item = {
				supportTests: supportTests,
				timestamp: new Date().valueOf()
			};

			sessionStorage.setItem(
				sessionStorageKey,
				JSON.stringify( item )
			);
		} catch ( e ) {}
	}

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} set1 Set of Emoji to test.
	 * @param {string} set2 Set of Emoji to test.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( context, set1, set2 ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set1, 0, 0 );
		var rendered1 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set2, 0, 0 );
		var rendered2 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		return rendered1.every( function ( rendered2Data, index ) {
			return rendered2Data === rendered2[ index ];
		} );
	}

	/**
	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
		var isIdentical;

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. Added in Unicode 13.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
					'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather a five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					// as the flag sequence
					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
					// with each code point separated by a zero-width space
					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Four and twenty blackbirds baked in a pie.
				 *
				 * To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
				 *
				 * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
				 *
				 * 0x1F426 (\uD83D\uDC26) == Bird
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x2B1B == Large Black Square
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
					'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Checks emoji support tests.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {string[]} tests Tests.
	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
		var canvas;
		if (
			typeof WorkerGlobalScope !== 'undefined' &&
			self instanceof WorkerGlobalScope
		) {
			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
		} else {
			canvas = document.createElement( 'canvas' );
		}

		var context = canvas.getContext( '2d', { willReadFrequently: true } );

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		var supports = {};
		tests.forEach( function ( test ) {
			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
		} );
		return supports;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {string} src The url where the script is located.
	 *
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );
		script.src = src;
		script.defer = true;
		document.head.appendChild( script );
	}

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
	var domReadyPromise = new Promise( function ( resolve ) {
		document.addEventListener( 'DOMContentLoaded', resolve, {
			once: true
		} );
	} );

	// Obtain the emoji support from the browser, asynchronously when possible.
	new Promise( function ( resolve ) {
		var supportTests = getSessionSupportTests();
		if ( supportTests ) {
			resolve( supportTests );
			return;
		}

		if ( supportsWorkerOffloading() ) {
			try {
				// Note that the functions are being passed as arguments due to minification.
				var workerScript =
					'postMessage(' +
					testEmojiSupports.toString() +
					'(' +
					[
						JSON.stringify( tests ),
						browserSupportsEmoji.toString(),
						emojiSetsRenderIdentically.toString()
					].join( ',' ) +
					'));';
				var blob = new Blob( [ workerScript ], {
					type: 'text/javascript'
				} );
				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
				worker.onmessage = function ( event ) {
					supportTests = event.data;
					setSessionSupportTests( supportTests );
					worker.terminate();
					resolve( supportTests );
				};
				return;
			} catch ( e ) {}
		}

		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

				settings.supports.everything =
					settings.supports.everything && settings.supports[ test ];

				if ( 'flag' !== test ) {
					settings.supports.everythingExceptFlag =
						settings.supports.everythingExceptFlag &&
						settings.supports[ test ];
				}
			}

			settings.supports.everythingExceptFlag =
				settings.supports.everythingExceptFlag &&
				! settings.supports.flag;

			// Sets DOMReady to false and assigns a ready function to settings.
			settings.DOMReady = false;
			settings.readyCallback = function () {
				settings.DOMReady = true;
			};
		} )
		.then( function () {
			return domReadyPromise;
		} )
		.then( function () {
			// When the browser can not render everything we need to load a polyfill.
			if ( ! settings.supports.everything ) {
				settings.readyCallback();

				var src = settings.source || {};

				if ( src.concatemoji ) {
					addScript( src.concatemoji );
				} else if ( src.wpemoji && src.twemoji ) {
					addScript( src.twemoji );
					addScript( src.wpemoji );
				}
			}
		} );
} )( window, document, window._wpemojiSettings );

/* ]]> */
</script>
<style id='wp-emoji-styles-inline-css' type='text/css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link rel='stylesheet' id='wpsm_ac-sh-font-awesome-front-css' href='http://ottawabachchoir.ca/wp-content/plugins/accordion-shortcode-and-widget/css/font-awesome/css/font-awesome.min.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='wpsm_ac-sh_bootstrap-front-css' href='http://ottawabachchoir.ca/wp-content/plugins/accordion-shortcode-and-widget/css/bootstrap-front.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='http://ottawabachchoir.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='easingslider-css' href='http://ottawabachchoir.ca/wp-content/plugins/easing-slider/assets/css/public.css?ver=3.0.8' type='text/css' media='all' />
<link rel='stylesheet' id='pj-news-ticker-css' href='http://ottawabachchoir.ca/wp-content/plugins/pj-news-ticker/public/css/pj-news-ticker.css?ver=1.9.8' type='text/css' media='all' />
<style id='responsive-menu-inline-css' type='text/css'>
/** This file is major component of this plugin so please don't try to edit here. */
#rmp_menu_trigger-4411 {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 100px;
  border-radius: 5px;
  display: none;
  text-decoration: none;
  right: 5%;
  background: #a8a8a8;
  transition: transform 0.5s, background-color 0.5s;
}
#rmp_menu_trigger-4411:hover, #rmp_menu_trigger-4411:focus {
  background: #a8a8a8;
  text-decoration: unset;
}
#rmp_menu_trigger-4411.is-active {
  background: #a8a8a8;
}
#rmp_menu_trigger-4411 .rmp-trigger-box {
  width: 25px;
  color: #ffffff;
}
#rmp_menu_trigger-4411 .rmp-trigger-icon-active, #rmp_menu_trigger-4411 .rmp-trigger-text-open {
  display: none;
}
#rmp_menu_trigger-4411.is-active .rmp-trigger-icon-active, #rmp_menu_trigger-4411.is-active .rmp-trigger-text-open {
  display: inline;
}
#rmp_menu_trigger-4411.is-active .rmp-trigger-icon-inactive, #rmp_menu_trigger-4411.is-active .rmp-trigger-text {
  display: none;
}
#rmp_menu_trigger-4411 .rmp-trigger-label {
  color: #ffffff;
  pointer-events: none;
  line-height: 13px;
  font-family: inherit;
  font-size: 14px;
  display: inline;
  text-transform: inherit;
}
#rmp_menu_trigger-4411 .rmp-trigger-label.rmp-trigger-label-top {
  display: block;
  margin-bottom: 12px;
}
#rmp_menu_trigger-4411 .rmp-trigger-label.rmp-trigger-label-bottom {
  display: block;
  margin-top: 12px;
}
#rmp_menu_trigger-4411 .responsive-menu-pro-inner {
  display: block;
}
#rmp_menu_trigger-4411 .rmp-trigger-icon-inactive .rmp-font-icon {
  color: #ffffff;
}
#rmp_menu_trigger-4411 .responsive-menu-pro-inner, #rmp_menu_trigger-4411 .responsive-menu-pro-inner::before, #rmp_menu_trigger-4411 .responsive-menu-pro-inner::after {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
}
#rmp_menu_trigger-4411 .rmp-trigger-icon-active .rmp-font-icon {
  color: #ffffff;
}
#rmp_menu_trigger-4411.is-active .responsive-menu-pro-inner, #rmp_menu_trigger-4411.is-active .responsive-menu-pro-inner::before, #rmp_menu_trigger-4411.is-active .responsive-menu-pro-inner::after {
  background-color: #ffffff;
}
#rmp_menu_trigger-4411:hover .rmp-trigger-icon-inactive .rmp-font-icon {
  color: #ffffff;
}
#rmp_menu_trigger-4411:not(.is-active):hover .responsive-menu-pro-inner, #rmp_menu_trigger-4411:not(.is-active):hover .responsive-menu-pro-inner::before, #rmp_menu_trigger-4411:not(.is-active):hover .responsive-menu-pro-inner::after {
  background-color: #ffffff;
}
#rmp_menu_trigger-4411 .responsive-menu-pro-inner::before {
  top: 10px;
}
#rmp_menu_trigger-4411 .responsive-menu-pro-inner::after {
  bottom: 10px;
}
#rmp_menu_trigger-4411.is-active .responsive-menu-pro-inner::after {
  bottom: 0;
}
/* Hamburger menu styling */
@media screen and (max-width: 800px) {
  /** Menu Title Style */
  /** Menu Additional Content Style */
  #navi {
    display: none !important;
  }
  #rmp_menu_trigger-4411 {
    display: block;
  }
  #rmp-container-4411 {
    position: fixed;
    top: 0;
    margin: 0;
    transition: transform 0.5s;
    overflow: auto;
    display: block;
    width: 75%;
    background-color: #ffffff;
    background-image: url("");
    height: 100%;
    left: 0;
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
  }
  #rmp-menu-wrap-4411 {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu, #rmp-menu-wrap-4411 .rmp-submenu {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  #rmp-menu-wrap-4411 .rmp-submenu-depth-1 .rmp-menu-item-link {
    padding-left: 10%;
  }
  #rmp-menu-wrap-4411 .rmp-submenu-depth-2 .rmp-menu-item-link {
    padding-left: 15%;
  }
  #rmp-menu-wrap-4411 .rmp-submenu-depth-3 .rmp-menu-item-link {
    padding-left: 20%;
  }
  #rmp-menu-wrap-4411 .rmp-submenu-depth-4 .rmp-menu-item-link {
    padding-left: 25%;
  }
  #rmp-menu-wrap-4411 .rmp-submenu.rmp-submenu-open {
    display: block;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item {
    width: 100%;
    list-style: none;
    margin: 0;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-link {
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    border-bottom: 1px solid #dedede;
    font-family: inherit;
    color: #210b0b;
    text-align: left;
    background-color: #ffffff;
    font-weight: normal;
    letter-spacing: 0px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s, border-color 0.5s, 0.5s;
    padding: 0 5%;
    padding-right: 50px;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-link:after, #rmp-menu-wrap-4411 .rmp-menu-item-link:before {
    display: none;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-link:hover, #rmp-menu-wrap-4411 .rmp-menu-item-link:focus {
    color: #210b0b;
    border-color: #dedede;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-link:focus {
    outline: none;
    border-color: unset;
    box-shadow: unset;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-link .rmp-font-icon {
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    font-size: 13px;
  }
  #rmp-menu-wrap-4411 .rmp-menu-current-item .rmp-menu-item-link {
    color: #210b0b;
    border-color: #dedede;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-current-item .rmp-menu-item-link:hover, #rmp-menu-wrap-4411 .rmp-menu-current-item .rmp-menu-item-link:focus {
    color: #210b0b;
    border-color: #dedede;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow {
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    overflow: hidden;
    right: 0;
    border-left-style: solid;
    border-left-color: #ffffff;
    border-left-width: 1px;
    height: 39px;
    width: 40px;
    color: #210b0b;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow svg {
    fill: #210b0b;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow:hover {
    color: #210b0b;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow:hover svg {
    fill: #210b0b;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow .rmp-font-icon {
    margin-right: unset;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow * {
    vertical-align: middle;
    line-height: 39px;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow-active {
    display: block;
    background-size: cover;
    color: #210b0b;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow-active svg {
    fill: #210b0b;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow-active:hover {
    color: #210b0b;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-menu-subarrow-active:hover svg {
    fill: #210b0b;
  }
  #rmp-menu-wrap-4411 .rmp-submenu {
    display: none;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-item-link {
    height: 40px;
    line-height: 40px;
    letter-spacing: 0px;
    font-size: 13px;
    border-bottom: 1px solid #dedede;
    font-family: inherit;
    font-weight: normal;
    color: #1c1111;
    text-align: left;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-item-link:hover, #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-item-link:focus {
    color: #1c1111;
    border-color: #dedede;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-current-item .rmp-menu-item-link {
    color: #1c1111;
    border-color: #dedede;
    background-color: #ffffff;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-current-item .rmp-menu-item-link:hover, #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-current-item .rmp-menu-item-link:focus {
    color: #1c1111;
    border-color: #dedede;
    background-color: inherit;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-subarrow {
    right: 0;
    border-right: unset;
    border-left-style: solid;
    border-left-color: #1d4354;
    border-left-width: 0px;
    height: 39px;
    line-height: 39px;
    width: 40px;
    color: #fff;
    background-color: inherit;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-subarrow:hover {
    color: #fff;
    border-color: #3f3f3f;
    background-color: inherit;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-subarrow-active {
    color: #fff;
    border-color: #1d4354;
    background-color: inherit;
  }
  #rmp-menu-wrap-4411 .rmp-submenu .rmp-menu-subarrow-active:hover {
    color: #fff;
    border-color: #3f3f3f;
    background-color: inherit;
  }
  #rmp-menu-wrap-4411 .rmp-menu-item-description {
    margin: 0;
    padding: 5px 5%;
    opacity: 0.8;
    color: #210b0b;
  }
  #rmp-search-box-4411 {
    display: block;
    padding-top: 0px;
    padding-left: 5%;
    padding-bottom: 0px;
    padding-right: 5%;
  }
  #rmp-search-box-4411 .rmp-search-form {
    margin: 0;
  }
  #rmp-search-box-4411 .rmp-search-box {
    background: #ffffff;
    border: 1px solid #dadada;
    color: #333333;
    width: 100%;
    padding: 0 5%;
    border-radius: 30px;
    height: 45px;
    -webkit-appearance: none;
  }
  #rmp-search-box-4411 .rmp-search-box::placeholder {
    color: #c7c7cd;
  }
  #rmp-search-box-4411 .rmp-search-box:focus {
    background-color: #ffffff;
    outline: 2px solid #dadada;
    color: #333333;
  }
  #rmp-menu-title-4411 {
    background-color: #ffffff;
    color: #ffffff;
    text-align: left;
    font-size: 13px;
    padding-top: 10%;
    padding-left: 5%;
    padding-bottom: 0%;
    padding-right: 5%;
    font-weight: 400;
    transition: background-color 0.5s, border-color 0.5s, color 0.5s;
  }
  #rmp-menu-title-4411:hover {
    background-color: #ffffff;
    color: #ffffff;
  }
  #rmp-menu-title-4411 > .rmp-menu-title-link {
    color: #ffffff;
    width: 100%;
    background-color: unset;
    text-decoration: none;
  }
  #rmp-menu-title-4411 > .rmp-menu-title-link:hover {
    color: #ffffff;
  }
  #rmp-menu-title-4411 .rmp-font-icon {
    font-size: 13px;
  }
  #rmp-menu-additional-content-4411 {
    padding-top: 0px;
    padding-left: 5%;
    padding-bottom: 0px;
    padding-right: 5%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
  }
}
/**
This file contents common styling of menus.
*/
.rmp-container {
  display: none;
  visibility: visible;
  padding: 0px 0px 0px 0px;
  z-index: 99998;
  transition: all 0.3s;
  /** Scrolling bar in menu setting box **/
}
.rmp-container.rmp-fade-top, .rmp-container.rmp-fade-left, .rmp-container.rmp-fade-right, .rmp-container.rmp-fade-bottom {
  display: none;
}
.rmp-container.rmp-slide-left, .rmp-container.rmp-push-left {
  transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
}
.rmp-container.rmp-slide-left.rmp-menu-open, .rmp-container.rmp-push-left.rmp-menu-open {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
.rmp-container.rmp-slide-right, .rmp-container.rmp-push-right {
  transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
}
.rmp-container.rmp-slide-right.rmp-menu-open, .rmp-container.rmp-push-right.rmp-menu-open {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
.rmp-container.rmp-slide-top, .rmp-container.rmp-push-top {
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
}
.rmp-container.rmp-slide-top.rmp-menu-open, .rmp-container.rmp-push-top.rmp-menu-open {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
.rmp-container.rmp-slide-bottom, .rmp-container.rmp-push-bottom {
  transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
}
.rmp-container.rmp-slide-bottom.rmp-menu-open, .rmp-container.rmp-push-bottom.rmp-menu-open {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}
.rmp-container::-webkit-scrollbar {
  width: 0px;
}
.rmp-container ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
}
.rmp-container ::-webkit-scrollbar-thumb {
  background: transparent;
}
.rmp-container ::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.rmp-container .rmp-menu-wrap .rmp-menu {
  transition: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  border: 0;
  bottom: auto;
  box-sizing: border-box;
  clip: auto;
  color: #666;
  display: block;
  float: none;
  font-family: inherit;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: 1.7;
  list-style-type: none;
  margin: 0;
  min-height: auto;
  max-height: none;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  position: relative;
  pointer-events: auto;
  right: auto;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-transform: none;
  transform: none;
  top: auto;
  visibility: inherit;
  width: auto;
  word-wrap: break-word;
  white-space: normal;
}
.rmp-container .rmp-menu-additional-content {
  display: block;
  word-break: break-word;
}
.rmp-container .rmp-menu-title {
  display: flex;
  flex-direction: column;
}
.rmp-container .rmp-menu-title .rmp-menu-title-image {
  max-width: 100%;
  margin-bottom: 15px;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}
button.rmp_menu_trigger {
  z-index: 999999;
  overflow: hidden;
  outline: none;
  border: 0;
  display: none;
  margin: 0;
  transition: transform 0.5s, background-color 0.5s;
  padding: 0;
}
button.rmp_menu_trigger .responsive-menu-pro-inner::before, button.rmp_menu_trigger .responsive-menu-pro-inner::after {
  content: "";
  display: block;
}
button.rmp_menu_trigger .responsive-menu-pro-inner::before {
  top: 10px;
}
button.rmp_menu_trigger .responsive-menu-pro-inner::after {
  bottom: 10px;
}
button.rmp_menu_trigger .rmp-trigger-box {
  width: 40px;
  display: inline-block;
  position: relative;
  pointer-events: none;
  vertical-align: super;
}
/*  Menu Trigger Boring Animation */
.rmp-menu-trigger-boring .responsive-menu-pro-inner {
  transition-property: none;
}
.rmp-menu-trigger-boring .responsive-menu-pro-inner::after, .rmp-menu-trigger-boring .responsive-menu-pro-inner::before {
  transition-property: none;
}
.rmp-menu-trigger-boring.is-active .responsive-menu-pro-inner {
  transform: rotate(45deg);
}
.rmp-menu-trigger-boring.is-active .responsive-menu-pro-inner:before {
  top: 0;
  opacity: 0;
}
.rmp-menu-trigger-boring.is-active .responsive-menu-pro-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

</style>
<link rel='stylesheet' id='dashicons-css' href='http://ottawabachchoir.ca/wp-includes/css/dashicons.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-layout-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=9.8.5' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=9.8.5' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=9.8.5' type='text/css' media='all' />
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='woocommerce-box-office-frontend-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce-box-office/build//frontend.css?ver=1.2.6' type='text/css' media='all' />
<link rel='stylesheet' id='ivory-search-styles-css' href='http://ottawabachchoir.ca/wp-content/plugins/add-search-to-menu/public/css/ivory-search.min.css?ver=5.5.11' type='text/css' media='all' />
<link rel='stylesheet' id='brands-styles-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/css/brands.css?ver=9.8.5' type='text/css' media='all' />
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/easing-slider/assets/js/public.js?ver=3.0.8" id="easingslider-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/pj-news-ticker/public/js/pj-news-ticker.js?ver=1.9.8" id="pj-news-ticker-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/recaptcha-woo/js/rcfwc.js?ver=1.0" id="rcfwc-js-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?explicit&amp;hl=en_CA" id="recaptcha-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="rmp_menu_scripts-js-extra">
/* <![CDATA[ */
var rmp_menu = {"ajaxURL":"https:\/\/ottawabachchoir.ca\/wp-admin\/admin-ajax.php","wp_nonce":"205dda59e2","menu":[{"menu_theme":"Default","theme_type":"default","theme_location_menu":"0","submenu_submenu_arrow_width":"40","submenu_submenu_arrow_width_unit":"px","submenu_submenu_arrow_height":"39","submenu_submenu_arrow_height_unit":"px","submenu_arrow_position":"right","submenu_sub_arrow_background_colour":"","submenu_sub_arrow_background_hover_colour":"","submenu_sub_arrow_background_colour_active":"","submenu_sub_arrow_background_hover_colour_active":"","submenu_sub_arrow_border_width":"","submenu_sub_arrow_border_width_unit":"px","submenu_sub_arrow_border_colour":"#1d4354","submenu_sub_arrow_border_hover_colour":"#3f3f3f","submenu_sub_arrow_border_colour_active":"#1d4354","submenu_sub_arrow_border_hover_colour_active":"#3f3f3f","submenu_sub_arrow_shape_colour":"#fff","submenu_sub_arrow_shape_hover_colour":"#fff","submenu_sub_arrow_shape_colour_active":"#fff","submenu_sub_arrow_shape_hover_colour_active":"#fff","use_header_bar":"off","header_bar_items_order":{"logo":"off","title":"on","additional content":"off","menu":"on","search":"off"},"header_bar_title":"Responsive Menu","header_bar_html_content":"","header_bar_logo":"","header_bar_logo_link":"","header_bar_logo_width":"","header_bar_logo_width_unit":"%","header_bar_logo_height":"","header_bar_logo_height_unit":"px","header_bar_height":"80","header_bar_height_unit":"px","header_bar_padding":{"top":"0px","right":"5%","bottom":"0px","left":"5%"},"header_bar_font":"","header_bar_font_size":"14","header_bar_font_size_unit":"px","header_bar_text_color":"#ffffff","header_bar_background_color":"#1d4354","header_bar_breakpoint":"8000","header_bar_position_type":"fixed","header_bar_adjust_page":"on","header_bar_scroll_enable":"off","header_bar_scroll_background_color":"#36bdf6","mobile_breakpoint":"600","tablet_breakpoint":"800","transition_speed":"0.5","sub_menu_speed":"0.2","show_menu_on_page_load":"off","menu_disable_scrolling":"off","menu_overlay":"off","menu_overlay_colour":"rgba(0,0,0,0.7)","desktop_menu_width":"","desktop_menu_width_unit":"%","desktop_menu_positioning":"absolute","desktop_menu_side":"left","desktop_menu_to_hide":"","use_current_theme_location":"off","mega_menu":{"225":"off","227":"off","229":"off","228":"off","226":"off"},"desktop_submenu_open_animation":"none","desktop_submenu_open_animation_speed":"100ms","desktop_submenu_open_on_click":"off","desktop_menu_hide_and_show":"off","menu_name":"Default Menu","menu_to_use":"menu","different_menu_for_mobile":"off","menu_to_use_in_mobile":"main-menu","use_mobile_menu":"on","use_tablet_menu":"on","use_desktop_menu":"off","menu_display_on":"all-pages","menu_to_hide":"#navi","submenu_descriptions_on":"off","custom_walker":"","menu_background_colour":"#ffffff","menu_depth":"5","smooth_scroll_on":"off","smooth_scroll_speed":"500","menu_font_icons":{"id":["225"],"icon":[""]},"menu_links_height":"40","menu_links_height_unit":"px","menu_links_line_height":"40","menu_links_line_height_unit":"px","menu_depth_0":"5","menu_depth_0_unit":"%","menu_font_size":"13","menu_font_size_unit":"px","menu_font":"","menu_font_weight":"normal","menu_text_alignment":"left","menu_text_letter_spacing":"","menu_word_wrap":"off","menu_link_colour":"#210b0b","menu_link_hover_colour":"#210b0b","menu_current_link_colour":"#210b0b","menu_current_link_hover_colour":"#210b0b","menu_item_background_colour":"#ffffff","menu_item_background_hover_colour":"#ffffff","menu_current_item_background_colour":"#ffffff","menu_current_item_background_hover_colour":"#ffffff","menu_border_width":"1","menu_border_width_unit":"px","menu_item_border_colour":"#dedede","menu_item_border_colour_hover":"#dedede","menu_current_item_border_colour":"#dedede","menu_current_item_border_hover_colour":"#dedede","submenu_links_height":"40","submenu_links_height_unit":"px","submenu_links_line_height":"40","submenu_links_line_height_unit":"px","menu_depth_side":"left","menu_depth_1":"10","menu_depth_1_unit":"%","menu_depth_2":"15","menu_depth_2_unit":"%","menu_depth_3":"20","menu_depth_3_unit":"%","menu_depth_4":"25","menu_depth_4_unit":"%","submenu_item_background_colour":"#ffffff","submenu_item_background_hover_colour":"#ffffff","submenu_current_item_background_colour":"#ffffff","submenu_current_item_background_hover_colour":"","submenu_border_width":"1","submenu_border_width_unit":"px","submenu_item_border_colour":"#dedede","submenu_item_border_colour_hover":"#dedede","submenu_current_item_border_colour":"#dedede","submenu_current_item_border_hover_colour":"#dedede","submenu_font_size":"13","submenu_font_size_unit":"px","submenu_font":"","submenu_font_weight":"normal","submenu_text_letter_spacing":"","submenu_text_alignment":"left","submenu_link_colour":"#1c1111","submenu_link_hover_colour":"#1c1111","submenu_current_link_colour":"#1c1111","submenu_current_link_hover_colour":"#1c1111","inactive_arrow_shape":"\u25bc","active_arrow_shape":"\u25b2","inactive_arrow_font_icon":"","active_arrow_font_icon":"","inactive_arrow_image":"","active_arrow_image":"","submenu_arrow_width":"40","submenu_arrow_width_unit":"px","submenu_arrow_height":"39","submenu_arrow_height_unit":"px","arrow_position":"right","menu_sub_arrow_shape_colour":"#210b0b","menu_sub_arrow_shape_hover_colour":"#210b0b","menu_sub_arrow_shape_colour_active":"#210b0b","menu_sub_arrow_shape_hover_colour_active":"#210b0b","menu_sub_arrow_border_width":"1","menu_sub_arrow_border_width_unit":"px","menu_sub_arrow_border_colour":"#ffffff","menu_sub_arrow_border_hover_colour":"#ffffff","menu_sub_arrow_border_colour_active":"#ffffff","menu_sub_arrow_border_hover_colour_active":"#ffffff","menu_sub_arrow_background_colour":"#ffffff","menu_sub_arrow_background_hover_colour":"#ffffff","menu_sub_arrow_background_colour_active":"#ffffff","menu_sub_arrow_background_hover_colour_active":"#ffffff","fade_submenus":"off","fade_submenus_side":"left","fade_submenus_delay":"100","fade_submenus_speed":"500","use_slide_effect":"off","slide_effect_back_to_text":"Back","accordion_animation":"off","auto_expand_all_submenus":"off","auto_expand_current_submenus":"off","menu_item_click_to_trigger_submenu":"off","button_width":"40","button_width_unit":"px","button_height":"40","button_height_unit":"px","button_background_colour":"#a8a8a8","button_background_colour_hover":"#a8a8a8","button_background_colour_active":"#a8a8a8","toggle_button_border_radius":"5","button_transparent_background":"off","button_left_or_right":"right","button_position_type":"fixed","button_distance_from_side":"5","button_distance_from_side_unit":"%","button_top":"100","button_top_unit":"px","button_push_with_animation":"off","button_click_animation":"boring","button_line_margin":"5","button_line_margin_unit":"px","button_line_width":"25","button_line_width_unit":"px","button_line_height":"3","button_line_height_unit":"px","button_line_colour":"#ffffff","button_line_colour_hover":"#ffffff","button_line_colour_active":"#ffffff","button_font_icon":"","button_font_icon_when_clicked":"","button_image":"","button_image_when_clicked":"","button_title":"","button_title_open":"","button_title_position":"left","menu_container_columns":"","button_font":"","button_font_size":"14","button_font_size_unit":"px","button_title_line_height":"13","button_title_line_height_unit":"px","button_text_colour":"#ffffff","button_trigger_type_click":"on","button_trigger_type_hover":"off","button_click_trigger":"#responsive-menu-button","items_order":{"title":"on","menu":"on","search":"on","additional content":""},"menu_title":"","menu_title_link":"","menu_title_link_location":"_self","menu_title_image":"https:\/\/ottawabachchoir.ca\/wp-content\/uploads\/2020\/05\/OBC-Logo-Letters-Burgundy.png","menu_title_font_icon":"","menu_title_section_padding":{"top":"10%","right":"5%","bottom":"0%","left":"5%"},"menu_title_background_colour":"#ffffff","menu_title_background_hover_colour":"#ffffff","menu_title_font_size":"13","menu_title_font_size_unit":"px","menu_title_alignment":"left","menu_title_font_weight":"400","menu_title_font_family":"","menu_title_colour":"#ffffff","menu_title_hover_colour":"#ffffff","menu_title_image_width":"","menu_title_image_width_unit":"%","menu_title_image_height":"","menu_title_image_height_unit":"px","menu_additional_content":"","menu_additional_section_padding":{"top":"0px","right":"5%","bottom":"0px","left":"5%"},"menu_additional_content_font_size":"16","menu_additional_content_font_size_unit":"px","menu_additional_content_alignment":"center","menu_additional_content_colour":"#ffffff","menu_search_box_text":"Search","menu_search_box_code":"","menu_search_section_padding":{"top":"0px","right":"5%","bottom":"0px","left":"5%"},"menu_search_box_height":"45","menu_search_box_height_unit":"px","menu_search_box_border_radius":"30","menu_search_box_text_colour":"#333333","menu_search_box_background_colour":"#ffffff","menu_search_box_placeholder_colour":"#c7c7cd","menu_search_box_border_colour":"#dadada","menu_section_padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"menu_width":"75","menu_width_unit":"%","menu_maximum_width":"","menu_maximum_width_unit":"px","menu_minimum_width":"","menu_minimum_width_unit":"px","menu_auto_height":"off","menu_container_padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"menu_container_background_colour":"#ffffff","menu_background_image":"","animation_type":"slide","menu_appear_from":"left","animation_speed":"0.5","page_wrapper":"","menu_close_on_body_click":"off","menu_close_on_scroll":"off","menu_close_on_link_click":"off","enable_touch_gestures":"off","hamburger_position_selector":"","menu_id":4411,"active_toggle_contents":"\u25b2","inactive_toggle_contents":"\u25bc"}]};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/responsive-menu/v4.0.0/assets/js/rmp-menu.js?ver=4.5.1" id="rmp_menu_scripts-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js?ver=2.7.0-wc.9.8.5" id="jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="wc-add-to-cart-js-extra">
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/ottawabachchoir.ca\/en\/cart\/","is_cart":"","cart_redirect_after_add":"no"};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js?ver=9.8.5" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js?ver=2.1.4-wc.9.8.5" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="woocommerce-js-extra">
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_password_show":"Show password","i18n_password_hide":"Hide password"};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js?ver=9.8.5" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script>
<link rel="https://api.w.org/" href="https://ottawabachchoir.ca/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://ottawabachchoir.ca/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.6.2" />
<meta name="generator" content="WooCommerce 9.8.5" />
	<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
	<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<style type="text/css" id="wp-custom-css">
			.rmp-menu-item-link {
	box-sizing: border-box;
}		</style>
		<form method="get" id="searchform" action="https://ottawabachchoir.ca/en/">
<div><input type="text" value="" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
<input type="hidden" name="id" value="3346" /></form>
<link href="https://fonts.googleapis.com/css?family=Lora|Open+Sans" rel="stylesheet">
</head>
<body topmargin="0"> 


<div id="subbar">
<div id="wrap">
	
	 

	
	<div class="social">
		<ul>
		<li><a href="/en/cart/"><img src="/wp-content/uploads/2020/05/cart.png" style="height: 15px;"></a></li>
	</ul>
	</div>
	


<div class="my_extra_menu_class"><ul id="menu-sub-navi" class="menu"><li id="menu-item-137" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-137"><a href="/en/shop/">Shop</a></li>
<li id="menu-item-138" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-138"><a href="http://ottawabachchoir.us1.list-manage.com/subscribe?u=15f877f009243e3674b434c91&#038;id=f8fe2a06a0">Newsletter Sign Up</a></li>
<li id="menu-item-3115" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3115"><a href="https://ottawabachchoir.ca/en/support/donate/">Donate</a></li>
<li id="menu-item-52" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-52"><a href="https://ottawabachchoir.ca/en/contact/">Contact</a></li>
<li id="menu-item-237-fr" class="lang-item lang-item-48 lang-item-fr lang-item-first menu-item menu-item-type-custom menu-item-object-custom menu-item-237-fr"><a href="https://ottawabachchoir.ca/fr/accueil/" hreflang="fr-CA" lang="fr-CA">Français</a></li>
</ul></div>	

	
	
	<div class="social">
		<ul>
			<li><a href="https://www.facebook.com/ottawabachchoir" target="out"><img src="/wp-content/uploads/2020/05/ifb.png"></a></li>
			<li><a href="https://twitter.com/ottawabachchoir" target="out"><img src="/wp-content/uploads/2020/05/itweet.png"></a></li>
			<li><a href="https://www.instagram.com/ottawabachchoir" target="out"><img src="/wp-content/uploads/2020/05/iicon.png"></a></li>
			<li><a href="https://www.youtube.com/user/ottawabachchoir" target="out"><img src="/wp-content/uploads/2020/05/iyt.png"></a></li>
	</div>
</div>
</div>

<div id="top">
<div id="wrap">



 



<div id="toplogo">
<a href="/en/home/"><img src="/wp-content/uploads/2020/05/OBC-Logo-Letters-Burgundy.png" border="0"></a>
</div>







<div id="navi">
<div class="my_extra_menu_class"><ul id="menu-menu" class="menu"><li id="menu-item-110" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-110"><a href="#">About</a>
<ul class="sub-menu">
	<li id="menu-item-73" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="https://ottawabachchoir.ca/en/about/choir-biography/">Choir Biography</a></li>
	<li id="menu-item-97" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-97"><a href="https://ottawabachchoir.ca/en/about/lisette-canton/">Founder and Artistic Director</a></li>
	<li id="menu-item-95" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-95"><a href="https://ottawabachchoir.ca/en/choir-members/">Choir Members</a></li>
	<li id="menu-item-96" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96"><a href="https://ottawabachchoir.ca/en/about/guest-artists/">Guest Artists</a></li>
	<li id="menu-item-98" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-98"><a href="https://ottawabachchoir.ca/en/about/our-team/">Our Team</a></li>
	<li id="menu-item-94" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-94"><a href="https://ottawabachchoir.ca/en/about/choir-history/">Choir History</a></li>
</ul>
</li>
<li id="menu-item-112" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-112"><a href="#">Concerts</a>
<ul class="sub-menu">
	<li id="menu-item-5909" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5909"><a href="https://ottawabachchoir.ca/en/product/season-series-2024-2025/">Season Series 2024-2025</a></li>
	<li id="menu-item-5912" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5912"><a href="https://ottawabachchoir.ca/en/product/bach-christmas-oratorio-bwv-248/">BACH: CHRISTMAS ORATORIO, BWV 248</a></li>
	<li id="menu-item-5911" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5911"><a href="https://ottawabachchoir.ca/en/product/polychoral-extravaganza/">POLYCHORAL EXTRAVAGANZA</a></li>
	<li id="menu-item-5910" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5910"><a href="https://ottawabachchoir.ca/en/product/gloria/">GLORIA!</a></li>
	<li id="menu-item-408" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-408"><a href="https://ottawabachchoir.ca/en/concerts/concert-archives/">Concert Archives</a></li>
</ul>
</li>
<li id="menu-item-3209" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3209"><a href="https://ottawabachchoir.ca/en/digital-concert-hall/">Digital Concert Hall</a></li>
<li id="menu-item-311" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-311"><a href="https://ottawabachchoir.ca/en/concerts/special-events/">Special Events</a>
<ul class="sub-menu">
	<li id="menu-item-5928" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5928"><a href="https://ottawabachchoir.ca/en/product/bach-beer-2/">BACH &#038; BEER</a></li>
	<li id="menu-item-310" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-310"><a href="https://ottawabachchoir.ca/en/support/intimate-concert-series/">Host an Intimate Concert</a></li>
</ul>
</li>
<li id="menu-item-116" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-116"><a href="#">News</a>
<ul class="sub-menu">
	<li id="menu-item-74" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-74"><a href="https://ottawabachchoir.ca/en/category/media-releases/">Media Releases</a></li>
	<li id="menu-item-182" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-182"><a href="https://ottawabachchoir.ca/en/category/concert-reviews/">Concert Reviews</a></li>
	<li id="menu-item-181" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-181"><a href="https://ottawabachchoir.ca/en/category/cd-reviews/">CD Reviews</a></li>
</ul>
</li>
<li id="menu-item-119" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-119"><a href="#">Education</a>
<ul class="sub-menu">
	<li id="menu-item-105" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-105"><a href="https://ottawabachchoir.ca/en/community-outreach/">Community Outreach</a></li>
</ul>
</li>
<li id="menu-item-118" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-118"><a href="#">Media</a>
<ul class="sub-menu">
	<li id="menu-item-580" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-580"><a href="https://ottawabachchoir.ca/en/product-category/cds-en/discography-en/">Discography</a></li>
	<li id="menu-item-92" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-92"><a href="https://ottawabachchoir.ca/en/media-resources/">Media Resources</a></li>
	<li id="menu-item-91" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-91"><a href="https://ottawabachchoir.ca/en/photo-gallery/">Photo Gallery</a></li>
</ul>
</li>
<li id="menu-item-117" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-117"><a href="#">Support</a>
<ul class="sub-menu">
	<li id="menu-item-134" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://ottawabachchoir.ca/en/friends-of-the-obc/">Friends of the OBC</a></li>
	<li id="menu-item-132" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-132"><a href="https://ottawabachchoir.ca/en/support/corporate-sponsorship/">Sponsorship</a></li>
	<li id="menu-item-133" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://ottawabachchoir.ca/en/support/donate/">Donate</a></li>
	<li id="menu-item-130" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-130"><a href="https://ottawabachchoir.ca/en/support/volunteer/">Volunteer</a></li>
</ul>
</li>
<li class=".dropsearch astm-search-menu is-menu is-dropdown menu-item"><a href="#" role="button" aria-label="Search Icon Link"><svg width="20" height="20" class="search-icon" role="img" viewBox="2 9 20 5" focusable="false" aria-label="Search">
						<path class="search-icon-path" d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></a><form method="get" id="searchform" action="https://ottawabachchoir.ca/en/">
<div><input type="text" value="" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
</li></ul></div></div>


<div style="clear:both;"></div>

</div>
</div>


    
 

	<div id="content">

	
		<div id="post-9860" class="post">
			<h1 class="title"><a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-gloria/" rel="bookmark" title="Permanent Link to The Ottawa Bach Choir presents Gloria!">The Ottawa Bach Choir presents Gloria!</a></h1>
			<div class="byline">Posted on March 24th, 2025 by oadmin</div>
			<div class="entry">
				<p>Ottawa (Canada) – The JUNO award-winning Ottawa Bach Choir (OBC) presents the final concert of the season, <strong><em>Gloria!</em></strong>, on Saturday, May 10, 2025, 7:30 PM, at St. Patrick’s Basilica, in Ottawa. The concert features a selection of Italian-influenced baroque masterpieces, including Vivaldi’s <em>Gloria</em>, RV 589, Handel’s <em>Laudate pueri Dominum</em>, HWV 237, and Chiara Margarita Cozzolani’s <em>Dixit Dominus</em> <em>a 8</em>. Joined by Ensemble Caprice baroque orchestra and spectacular soloists, this concert reflects the vibrant energy and expressive intensity of the Italian baroque style, and closes the season with splendour!</p>
<p><em>“Prepare to be Immersed in</em><em> the brilliance of the Italian Baroque with music by Vivaldi, Handel, and the rarely-performed Cozzolani, including compositions written in Venice, Rome and Milan.” </em>says Founder and Artistic Director, Dr. Lisette Canton. <em>“</em><em>Performed with the distinguished Baroque orchestra Ensemble Caprice and soloists, Ottawa audiences won’t want to miss the passion and grandeur of Italian baroque splendour.”</em></p>
<p>Founded in 2002 by Dr. Lisette Canton, the Ottawa Bach Choir offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. The choir has garnered acclaim through award-winning recordings and worldwide tours, including in Canada, Europe, the United States, Mexico and China, featuring prestigious appearances at Bachfest Leipzig, Meet in Beijing, Festival Música Santa Fe, Ottawa Chamberfest, Carnegie Hall, and more.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p>Hannah Lim, General Manager, <a href="mailto:hannah.lim@ottawabachchoir.ca">hannah.lim@ottawabachchoir.ca</a></p>
<p>Dr. Lisette Canton, Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>Vivaldi: <em>Gloria</em>, Handel: <em>Laudate pueri Dominum</em>, and Cozzolani: <em>Dixit Dominus a 8</em></p>
<p>with Ensemble Caprice baroque orchestra and soloists</p>
<p>Lisette Canton, Conductor</p>
<p><strong>                                                </strong></p>
<p><a href="https://ottawabachchoir.ca/en/product/gloria/"><strong><em>Gloria!</em></strong></a></p>
<p><strong>Saturday, May 10, 2025, 7:30 p.m.</strong></p>
<p>St. Patrick’s Basilica, 220 Kent Street, Ottawa</p>
<p>Tickets: Reserved $55, Adult $45, Senior $40, Student $20, Children 12 and under free</p>
<p>Tickets are available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
			</div>
			<div class="meta">
				<p class="links">
					<a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-gloria/" rel="bookmark" title="Permanent Link to The Ottawa Bach Choir presents Gloria!" class="more">Read full article</a>
					<b>|</b>
					<a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-gloria/#respond" class="comments" >No Comments</a>				</p>
			</div>
		</div>
	
		
			<div id="post-9406" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-polychoral-extravaganza/" rel="bookmark" title="Permanent Link to The Ottawa Bach Choir presents Polychoral Extravaganza">The Ottawa Bach Choir presents Polychoral Extravaganza</a></h2>
				<div class="byline">Posted on January 12th, 2025 by oadmin</div>
				<div class="entry">
					<p>Ottawa (Canada) – The JUNO award-winning Ottawa Bach Choir (OBC) presents the second concert of the 23rd season, <strong><em>Polychoral Extravaganza</em></strong>, on Saturday, March 1, 2025, 7:30 p.m., at Carleton Dominion-Chalmers Centre, in Ottawa. The concert features a joint performance with the Vancouver Chamber Choir, with works by each choir as well as polychoral music for double choir. Composers include Bach, Bruckner, Schütz, Tavener and Martin, among others, along with the OBC performing Langlais’ <em>Messe solennelle </em>with organist Matthew Larkin, and the VCC showcasing works by Muhly, Hawley, Whittall, Dove, and more!</p>
<p><em>“The OBC is thrilled to welcome the Vancouver Chamber Choir, directed by Kari Turunen, back to Ottawa, and to collaborate on such an eclectic program ,</em><em>” </em>says Founder and Artistic Director, Lisette Canton.<em> “</em>Don’t miss this choral celebration, featuring music from the Baroque to the Contemporary, by two of Canada’s exceptional professional choirs!”</p>
<p>Founded in 2002 by Dr. Lisette Canton, the Ottawa Bach Choir offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. The choir has garnered acclaim through award-winning recordings and worldwide tours, including in Canada, Europe, the United States, Mexico and China, featuring prestigious appearances at Bachfest Leipzig, Meet in Beijing, Festival Música Santa Fe, Ottawa Chamberfest, Carnegie Hall, and more.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p>Hannah Lim, General Manager, <a href="mailto:hannahlim913@gmail.com">hannahlim913@gmail.com</a></p>
<p>Dr. Lisette Canton, Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with the Vancouver Chamber Choir; Kari Turunen, Artistic Director</p>
<p>Matthew Larkin, Organist</p>
<p>Lisette Canton, Conductor</p>
<p><strong>                                                </strong></p>
<p><a href="https://ottawabachchoir.ca/en/product/polychoral-extravaganza/"><strong><em>Polychoral Extravaganza</em></strong></a></p>
<p><strong>Saturday, March 1, 2025, 7:30 p.m.</strong></p>
<p>Carleton Dominion-Chalmers Centre, 355 Cooper Street, Ottawa</p>
<p>Tickets: Reserved $55, Adult $45, Senior $40, Student $20, Children 12 and under free</p>
<p>Tickets are available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-polychoral-extravaganza/" rel="bookmark" title="Permanent Link to The Ottawa Bach Choir presents Polychoral Extravaganza" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/the-ottawa-bach-choir-presents-polychoral-extravaganza/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-6364" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-23rd-season-with-bachs-christmas-oratorio/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir opens 23rd season with Bach&#8217;s Christmas Oratorio">Ottawa Bach Choir opens 23rd season with Bach&#8217;s Christmas Oratorio</a></h2>
				<div class="byline">Posted on October 18th, 2024 by oadmin</div>
				<div class="entry">
					<p>Ottawa (Canada) <strong>– </strong>The JUNO award-winning Ottawa Bach Choir (OBC) presents the first concert of its 23<sup>rd</sup> season, <strong><em>Weihnachts-Oratorium (Christmas Oratorio)</em></strong>, on Saturday, November 30, 2024, 7:00 p.m., at St. François d’Assise Church, 20 Fairmont Avenue, in Ottawa. Bach’s rarely-performed masterpiece features six cantatas celebrating the feast days between Christmas and Epiphany, describing the birth of Jesus to the adoration of the Magi. With the Theatre of Early Music baroque orchestra and fabulous soloists, including soprano Myriam Leblanc, countertenor Daniel Taylor, British tenor Charles Daniels and baritone Geoffrey Sirett, this timeless work of profound spiritual expression is a must-see during the Christmas season.</p>
<p><em>“Bach’s </em>Christmas Oratorio<em> is the epitome of the nativity story, composed at the height of the Baroque period and told through a dramatically unified combination of thrilling large-scale choruses, poignant Biblical narrative, beautifully scored solo arias and richly harmonized chorales, all adorned in Bach’s brilliant musical style,</em><em>” </em>says Founder and Artistic Director, Lisette Canton.<em> “Come join us as we celebrate this festive season through Bach’s glorious masterpiece with some of today’s leading musicians in this style—you won’t want to miss it!”</em></p>
<p>Founded in 2002 by Dr. Lisette Canton, the Ottawa Bach Choir offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. The choir has garnered acclaim through award-winning recordings and worldwide tours, including Canada, Europe, the United States, Mexico and China, featuring prestigious appearances at Bachfest Leipzig, Meet in Beijing, Festival Música Santa Fe, Ottawa Chamberfest, Carnegie Hall, and more.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p>Karen Frank, General Manager, <a href="mailto:karen.frank@ottawabachchoir.ca">karen.frank@ottawabachchoir.ca</a></p>
<p>Dr. Lisette Canton, Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with Theatre of Early Music baroque orchestra</p>
<p>Guest soloists: soprano Myriam Leblanc, countertenor Daniel Taylor, tenor Charles Daniels, and bass Geoffrey Sirett</p>
<p>Lisette Canton, conductor</p>
<p><strong>                                                </strong></p>
<p><a href="https://ottawabachchoir.ca/en/product/bach-christmas-oratorio-bwv-248/"><strong><em>Bach: Weihnachts-Oratorium (Christmas Oratorio), BWV 248</em></strong></a></p>
<p>Saturday, November 30, 2024, 7:00 p.m.</p>
<p>St. François d’Assise Church, 20 Fairmont Avenue, Ottawa</p>
<p>Tickets: Reserved $60, Adult $50, Senior $45, Student $20, Children 12 and under free</p>
<p>Tickets are available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-23rd-season-with-bachs-christmas-oratorio/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir opens 23rd season with Bach&#8217;s Christmas Oratorio" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-23rd-season-with-bachs-christmas-oratorio/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-6267" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-bach-beer/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents Bach &#038; Beer">Ottawa Bach Choir presents Bach &#038; Beer</a></h2>
				<div class="byline">Posted on September 5th, 2024 by oadmin</div>
				<div class="entry">
					<p>Ottawa, Canada – Celebrate Oktoberfest with the JUNO award-winning Ottawa Bach Choir on Saturday, October 5th, 2024, at 5:00 PM, at St. Stefan – Serbian Orthodox Church &amp; Hall. This exceptional evening includes beautiful music from Bach to the Beatles, a cameo appearance by countertenor Daniel Taylor, delectable German-inspired canapés, sumptuous desserts, local beer brewed by Kichesippi Beer Co., and wine. Also included is a raffle featuring fantastic prizes from local businesses, concert tickets, and more! Join us for an evening of delightful melodies, delectable treats and great company that supports the OBC and the arts community. <em>Willkommen! </em></p>
<p>Founded in 2002 by Dr. Lisette Canton, the Ottawa Bach Choir offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. The choir has garnered acclaim through award-winning recordings and worldwide tours, including in Canada, Europe, the United States, Mexico and China, featuring prestigious appearances at Bachfest Leipzig, Meet in Beijing, Festival Música Santa Fe, Ottawa Chamberfest, Carnegie Hall, and more!</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p>Lisette Canton, Founder &amp; Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>Karen Frank, General Manager, <a href="mailto:karen.frank@ottawabachchchoir.ca">karen.frank@ottawabachchchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>Lisette Canton, Conductor</p>
<p>Daniel Taylor, Guest Countertenor and Patron</p>
<p><em> </em></p>
<p><strong><em>Bach &amp; Beer</em></strong></p>
<p>Saturday, October 5, 2024, 5 PM</p>
<p>St. Stefan – Serbian Orthodox Church &amp; Hall, 1993 Prince of Wales Drive, Ottawa</p>
<p>&nbsp;</p>
<p>Tickets: $75 ($50 tax receipt available upon request)</p>
<p>Tickets available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Additional Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-bach-beer/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents Bach &#038; Beer" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-bach-beer/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-6113" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-23rd-season-of-transcendent-choral-music/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents 23rd season of transcendent choral music">Ottawa Bach Choir presents 23rd season of transcendent choral music</a></h2>
				<div class="byline">Posted on August 19th, 2024 by oadmin</div>
				<div class="entry">
					<p>The JUNO award-winning Ottawa Bach Choir (OBC), under the artistic direction of Lisette Canton, invites you to join us for our 23<sup>rd</sup> season of transcendent choral music! The professional ensemble has travelled the world, received national and international recognition, and also won a 2020 JUNO award for Best Classical Album of the Year: Vocal or Choral, for its album <a href="https://ottawabachchoir.ca/en/product/handel-dixit-dominus-bach-schutz-motets-2/"><em>Handel: Dixit Dominus, Bach &amp; Schütz: Motets</em></a>!</p>
<p><strong>The 2024-2025 <a href="https://ottawabachchoir.ca/en/product/season-series-2024-2025/">Season Series</a> offers three spectacular concerts: </strong></p>
<p><strong>(1)</strong><strong><em><a href="https://ottawabachchoir.ca/en/product/bach-christmas-oratorio-bwv-248/"> Bach: Weihnachts-Oratorium</a> (Christmas Oratorio),</em></strong> <strong>Saturday, November 30, 2024, 7 PM, </strong>St. François d&#8217;Assise Church, 20 Fairmont Avenue, Ottawa</p>
<p><strong>(2) </strong><strong><em><a href="https://ottawabachchoir.ca/en/product/polychoral-extravaganza/">Polychoral Extravaganza</a>,</em></strong> <strong>Saturday, March 1, 2025, 7:30 PM, </strong>Carleton Dominion-Chalmers Centre, 355 Cooper Street, Ottawa</p>
<p><strong>(3) </strong><strong><em><a href="https://ottawabachchoir.ca/en/product/gloria/">Gloria!</a>, </em></strong><strong>Saturday, May 10, 2025, 7:30 </strong><strong>PM, </strong>St. Patrick&#8217;s Basilica, 220 Kent Street, Ottawa<strong> </strong></p>
<p>Early Bird Subscription tickets, at a 15% discount, are available through our website for a limited time. Offer expires on September 2, 2024. Afterwards, regular subscription (at a 10% discount) and individual ticket prices will apply. For more information, e-mail us at <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a>,</p>
<p>Don’t miss the chance to share our passion and discover the best that choral music has to offer!</p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-23rd-season-of-transcendent-choral-music/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents 23rd season of transcendent choral music" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-23rd-season-of-transcendent-choral-music/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-5840" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-sings-flights-of-angels-in-chamberfest/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir sings &#8220;Flights of Angels&#8221; in Chamberfest">Ottawa Bach Choir sings &#8220;Flights of Angels&#8221; in Chamberfest</a></h2>
				<div class="byline">Posted on June 26th, 2024 by oadmin</div>
				<div class="entry">
					<p>Ottawa (Canada) &#8211; Ottawa Lovers of motets and part-songs are in for a treat! Founded in 2002 by Dr. Lisette Canton, the Juno Award-winning Ottawa Bach Choir (OBC) will grace the stage with a programme created just for Chamberfest featuring motets by Johann Sebastian Bach and Anton Bruckner (in honour of his 200th birthday), plus works by Isabella Leonarda, Clara Schumann, Monteverdi, Purcell, Pärt, and Taverner. Don’t miss this expert performance of beloved repertoire delivered with OBC’s signature “…bright, clear, and transparent sound, springy feel for rhythm, beautifully shaded dynamics, and exemplary diction…” (Steve Smith, NY Times)</p>
<p>Works include baroque favourites by Bach, Schütz, Purcell, Monteverdi and Isabella Leonarda, along with later motets by Bruckner, Clara Schumann, Canadian Rupert Lang, Pärt and Tavener, and part-songs by Lasso and Saint-Saëns.</p>
<p>The Ottawa Bach Choir, founded in 2002 by Dr. Lisette Canton, offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. With the combination of a scholarly and emotional approach, the OBC provides an unforgettable experience of choral music at its best. The OBC won the 2020 JUNO Award for its album, <em><strong>Handel: Dixit Dominus; Bach &amp; Schütz: Motets</strong></em>, in the category Classical Album of the Year: Vocal or Choral, and returned from the prestigious international festival, <em>Bachfest Leipzig</em>, in June 2022. The OBC has toured extensively in Canada, Europe, the United States and China, and had the honour of being the first Canadian choir ever to be among the performers in <em>Bachfest Leipzig 2014</em>. The choir’s eighth album, <strong><em>Johann Sebastian Bach: Six Motets</em></strong>, on the ATMA Classique label, critically acclaimed as <em>“one of the finest on record” </em>(The WholeNote), is available on all streaming platforms as well as on the choir’s website.</p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with Jonathan Oldengarm, organ; Jean-Christophe Lizotte, cello; Joseph Phillips, double bass</p>
<p>Lisette Canton, conductor</p>
<p><strong>                                                </strong></p>
<p><strong><em>Flights of Angels</em></strong></p>
<p><strong>Saturday, July 27, 2024, 7:00 p.m.</strong></p>
<p>Carleton Dominion-Chalmers Centre, 355 Cooper St., Ottawa</p>
<p>Tickets are available online on the <a href="https://www.chamberfest.com/event/2024/ottawa-bach-choir-flights-of-angels/">Chamberfest</a> website</p>
<p>Information: <a href="mailto:info@chamberfest.com">info@chamberfest.com</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-sings-flights-of-angels-in-chamberfest/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir sings &#8220;Flights of Angels&#8221; in Chamberfest" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-sings-flights-of-angels-in-chamberfest/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-5772" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/la-scena-musicale-review-johann-sebastian-bach-six-motets/" rel="bookmark" title="Permanent Link to La Scena Musicale Review: &#8220;Johann Sebastian Bach: Six Motets&#8221;">La Scena Musicale Review: &#8220;Johann Sebastian Bach: Six Motets&#8221;</a></h2>
				<div class="byline">Posted on April 27th, 2024 by oadmin</div>
				<div class="entry">
					<header class="post-header cf">
<div class="heading cf">
<h1 class="post-title item fn">CD Review | Johann Sebastian Bach: Six Motets (Atma Classique, 2023)</h1>
</div>
<div class="post-meta cf"><span class="posted-by">BY <span class="reviewer"><a title="Posts by Viktor Lazarov" href="https://myscena.org/author/viktor-lazarov/" rel="author">VIKTOR LAZAROV</a></span> </span><span class="posted-on">ON <span class="dtreviewed"><time class="value-title" title="2024-03-29" datetime="2024-03-29T08:00:21-05:00">29 MARCH 2024</time></span></span><span class="cats"><a href="https://myscena.org/classical-music/baroque-and-early/" rel="category tag">BAROQUE AND EARLY</a>, <a href="https://myscena.org/cd-and-book-reviews/" rel="category tag">CD AND BOOK REVIEWS</a>, <a href="https://myscena.org/classical-music/vocal/choral/" rel="category tag">CHORAL</a></span></div>
</header>
<div class="post-container cf">
<div class="post-content-right">
<div class="post-content description ">
<div class="tagcloud"><a title="Back to Issue" href="https://myscena.org/issue/vol-29-issue-6">April / May 2024</a></div>
<section class="review-box stars">
<div class="main-stars"></div>
</section>
<blockquote><p><b><i>Johann Sebastian Bach: Six Motets<br />
</i></b>Ottawa Bach Choir, conducted by Lisette Canton; Jonathan Oldengarm, organ; Matthew Larkin, harpsichord; Lucas Harris, theorbo; Jean-Christophe Lizotte, cello; Reuven Rothman, double bass<br />
Atma Classique, 2023</p></blockquote>
<picture class=" wp-image-1057608 alignleft"><source srcset="https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk.jpg.webp 1000w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-300x300.jpg.webp 300w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-150x150.jpg.webp 150w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-768x768.jpg.webp 768w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-600x600.jpg.webp 600w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-100x100.jpg.webp 100w" type="image/webp" sizes="(max-width: 220px) 100vw, 220px" /><img decoding="async" class="wp-image-1057608 alignleft no-display appear" src="https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk.jpg" sizes="(max-width: 220px) 100vw, 220px" srcset="https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk.jpg 1000w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-300x300.jpg 300w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-150x150.jpg 150w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-768x768.jpg 768w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-600x600.jpg 600w, https://myscena.org/wp-content/uploads/2024/03/Johann-Sebastian-Bach-Six-Motets-cmyk-100x100.jpg 100w" alt="" width="220" height="220" /></picture>Under the leadership of Lisette Canton, the Ottawa Bach Choir and five-piece continuo deliver a magnificent performance of Bach’s <i>Six Motets</i>. The Ottawa Bach Choir sings with a wide range of emotion and characters, mirroring the varying emotional states present in J.S. Bach motets. With agile and virtuosic singing, they uncover the beauty, unerring faith, and torment contained in these masterpieces. Canton’s highly nuanced conducting and command of the score is evident in the choir’s precise shifts from one humour to the next, contrapuntal clarity, and tight ensemble work. Expressively, the vocal ensemble is spotless: angelic at times, jovial, melancholy, remorseful, or tormented at other times. An all-around inspired vocal performance from both choir and soloists coupled with expert accompaniment. The recording quality is limpid, clean, and well-balanced. A thoroughly engaging and inspiring reference recording in performance practice style.</p>
<div id="mysce-6ad2737172d6a6b4a1715e341ff2ebb2" class="mysce-6ad2737172d6a6b4a1715e341ff2ebb2 mysce-1st-content-big-box"></div>
<p>Opening with <i>Singet dem Herrn ein neues Lied, </i>BWV 225<b>, </b>the light, airy, agile voices of the choir produce a limpid sound. Virtuosic melismas in the choir contribute to an engaging, driven performance: music that dances, lives, breathes, lilts. The second movement is light and calm, while the third is lively and metrically propelled forward. Energetic impulses from the choir, supported by the continuo, are expertly synchronized.</p>
<p>In <i>Jesu, meine Freude, </i>BWV 227<b>,</b> the melancholy and expressive score is rendered with precise diction, energy, and engagement, giving life to the motet. The Ottawa Bach Choir’s angelic voices are expertly recorded by the engineers, providing an exemplary rendition of <i>Der Geist hilft unser Schwachheit auf, </i>BWV 226, <i>Komm, Jesu, komm, </i>BWV 229, and <i>Lobet den Herrn, alle Heiden, </i>BWV 230<i>, </i>which ends with a brilliant fugue.</p>
<h4>Playlist</h4>
<div class="fluid-width-video-wrapper"><iframe id="_ytid_56643" class="__youtube_prefs__  epyt-is-override  no-lazyload" title="J.S. Bach: Singet dem Herrn ein neues Lied, BWV 225 - Wie sich ein Vater erbarmet/Gott, nimm..." src="https://www.youtube.com/embed/1eOXTgUqplo?enablejsapi=1&amp;autoplay=0&amp;cc_load_policy=0&amp;iv_load_policy=1&amp;loop=0&amp;modestbranding=0&amp;fs=1&amp;playsinline=0&amp;controls=1&amp;color=red&amp;cc_lang_pref=&amp;rel=1&amp;autohide=2&amp;theme=dark&amp;" allowfullscreen="allowfullscreen" data-origwidth="702" data-origheight="394" data-no-lazy="1" data-skipgform_ajax_framebjll="" data-mce-fragment="1"></iframe></div>
<div class="fluid-width-video-wrapper"><iframe id="_ytid_35094" class="__youtube_prefs__  epyt-is-override  no-lazyload" title="J.S. Bach: Jesu meine Freude, BWV 227 - Jesu, meine Freude" src="https://www.youtube.com/embed/1OxVPA6_oyE?enablejsapi=1&amp;autoplay=0&amp;cc_load_policy=0&amp;iv_load_policy=1&amp;loop=0&amp;modestbranding=0&amp;fs=1&amp;playsinline=0&amp;controls=1&amp;color=red&amp;cc_lang_pref=&amp;rel=1&amp;autohide=2&amp;theme=dark&amp;" allowfullscreen="allowfullscreen" data-origwidth="702" data-origheight="394" data-no-lazy="1" data-skipgform_ajax_framebjll="" data-mce-fragment="1"></iframe></div>
<div class="likebtn_container"><span class="likebtn-wrapper lb-loaded lb-style-roundthumb lb-popup-position-top lb-tooltip-disabled lb-popup-style-light" data-identifier="post_1057752" data-site_id="61703dd46fd08b050616a824" data-theme="roundthumb" data-ef_voting="push" data-show_like_label="false" data-tooltip_enabled="false" data-rich_snippet="true" data-style="" data-unlike_allowed="" data-show_copyright="" data-item_url="https://myscena.org/viktor-lazarov/cd-review-johann-sebastian-bach-six-motets-atma-classique-2023/" data-item_title="CD Review | Johann Sebastian Bach: Six Motets (Atma Classique, 2023)" data-item_image="https://myscena.org/wp-content/uploads/2024/03/Six-Motets.webp" data-item_date="2024-03-29T08:00:21-05:00" data-engine="WordPress" data-plugin_v="2.6.37" data-prx="https://myscena.org/wp-admin/admin-ajax.php?action=likebtn_prx" data-event_handler="likebtn_eh"><span id="lb-like-0" class="likebtn-button lb-like lb-ef-push"><span class="lb-a" data-lb_index="0"><span class="likebtn-icon lb-like-icon"> </span></span></span></span></div>
</div>
<div>Read Article: <a href="https://myscena.org/viktor-lazarov/cd-review-johann-sebastian-bach-six-motets-atma-classique-2023/">https://myscena.org/viktor-lazarov/cd-review-johann-sebastian-bach-six-motets-atma-classique-2023/</a></div>
</div>
<div>Purchase CD: <a href="https://ottawabachchoir.ca/en/product/bach-six-motets/">https://ottawabachchoir.ca/en/product/bach-six-motets/</a></div>
</div>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/la-scena-musicale-review-johann-sebastian-bach-six-motets/" rel="bookmark" title="Permanent Link to La Scena Musicale Review: &#8220;Johann Sebastian Bach: Six Motets&#8221;" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/la-scena-musicale-review-johann-sebastian-bach-six-motets/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-5713" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-leipzig-1723/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents LEIPZIG 1723">Ottawa Bach Choir presents LEIPZIG 1723</a></h2>
				<div class="byline">Posted on March 18th, 2024 by oadmin</div>
				<div class="entry">
					<p>Ottawa (Canada) <strong>– </strong>The JUNO award-winning Ottawa Bach Choir (OBC) presents the final concert of its 22<sup>nd</sup> season, <strong><em>Leipzig 1723</em></strong>, on Saturday, May 4, 2024, 8:00 p.m., at St. Andrew’s Presbyterian Church, 82 Kent Street, in Ottawa. The concert features exquisite German baroque cantatas by the candidates for Thomaskantor in Leipzig: Telemann, Graupner and Bach. Works include Telemann’s <em>Singet dem Herrn ein neues Lied,</em> TWV 7:30; Graupner’s <em>Aus der Tiefen rufen wir</em>, GWV 1113/23a; and <em>Die Elenden sollen essen</em>, BWV 75, the first cantata Bach composed for his new post as Thomaskantor in Leipzig. Accompanied by Ensemble Caprice baroque orchestra, organist Matthew Larkin and talented soloists from the choir, this brilliant concert will close the season with a fluorish.</p>
<p><em>“In honour of the 300<sup>th</sup> anniversary of Bach’s tenure as Thomaskantor in Leipzig, we are thrilled to present magnificent cantatas by the three main candidates considered for the position, Telemann, Graupner and Bach,” </em>says Founder and Artistic Director, Lisette Canton.<em> “Hear these rarely performed gems by the leading German composers of the day and immerse yourself in this timeless music, performed with the distinguished Baroque orchestra Ensemble Caprice and soloists. A glorious experience you won’t want to miss!”    </em></p>
<p>The Ottawa Bach Choir, founded in 2002 by Dr. Lisette Canton, offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. With the combination of a scholarly and emotional approach, the OBC provides an unforgettable experience of choral music at its best. The OBC won the 2020 JUNO Award for its album, <em><strong>Handel: Dixit Dominus; Bach &amp; Schütz: Motets</strong></em>, in the category Classical Album of the Year: Vocal or Choral, and returned from the prestigious international festival, <em>Bachfest Leipzig</em>, in June 2022. The OBC has toured extensively in Canada, Europe, the United States and China, and had the honour of being the first Canadian choir ever to be among the performers in <em>Bachfest Leipzig 2014</em>. The choir’s eighth album, <strong><em>Johann Sebastian Bach: Six Motets</em></strong>, on the ATMA Classique label, critically acclaimed as <em>“one of the finest on record” </em>(The WholeNote), is available on all streaming platforms as well as on the choir’s website.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p><strong>Karen Frank, </strong>General Manager, <a href="mailto:karen.frank@ottawabachchoir.ca">karen.frank@ottawabachchoir.ca</a></p>
<p><strong>Dr. Lisette Canton, </strong>Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with Ensemble Caprice baroque orchestra and soloists</p>
<p>Lisette Canton, conductor</p>
<p><strong>                                                </strong></p>
<p><strong><em>Leipzig 1723</em></strong></p>
<p><strong>Saturday, May 4, 2024, 8:00 p.m.</strong></p>
<p>St. Andrew’s Presbyterian Church, 82 Kent Street, Ottawa</p>
<p>Tickets: Reserved $55, Adult $45, Senior $40, Student $20, Children 12 and under free</p>
<p>Tickets are available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-leipzig-1723/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents LEIPZIG 1723" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-leipzig-1723/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-5638" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-the-maestro-of-san-marco/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents The Maestro of San Marco">Ottawa Bach Choir presents The Maestro of San Marco</a></h2>
				<div class="byline">Posted on January 31st, 2024 by oadmin</div>
				<div class="entry">
					<p>The JUNO award-winning Ottawa Bach Choir (OBC) presents the second concert of its 22<sup>nd</sup> season, <strong><em>The Maestro of San Marco</em></strong>, on Saturday, March 2, 2024, 8:00 p.m., at Knox Presbyterian Church, 120 Lisgar Street, in Ottawa. The concert features sacred and profane music by Claudio Monteverdi, who was Maestro di cappella of San Marco in Venice over the course of 30 years, from 1613-1643. Works include his <em>Messa a quattro voci da cappella</em> and selected Madrigals from Books 1-8, a prolific output of works that marked the transition from the Renaissance to the Baroque. The choir is joined by a chamber instrumental ensemble and soloists from the choir.</p>
<p><em>“We are delighted to present rarely heard music by the Italian Baroque master, Claudio Monteverdi, which traces the journey from the balanced counterpoint of the Renaissance to the dramatic text-inspired music of the Baroque,” </em>says Founder and Artistic Director, Lisette Canton.<em> “Experience this passionate music in both the sacred and profane contexts – you’re sure to be inspired!” </em></p>
<p>The Ottawa Bach Choir, founded in 2002 by Dr. Lisette Canton, offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. With the combination of a scholarly and emotional approach, the OBC provides an unforgettable experience of choral music at its best. The OBC won the 2020 JUNO Award for its album, <em><strong>Handel: Dixit Dominus; Bach &amp; Schütz: Motets</strong></em>, in the category Classical Album of the Year: Vocal or Choral, and returned from the prestigious international festival, <em>Bachfest Leipzig</em>, in June 2022. The OBC has toured extensively in Canada, Europe, the United States and China, and had the honour of being the first Canadian choir ever to be among the performers in <em>Bachfest Leipzig 2014</em>. The choir’s eighth album, <strong><em>Johann Sebastian Bach: Six Motets</em></strong>, on the ATMA Classique label, critically acclaimed as <em>“one of the finest on record” </em>(The WholeNote), is available on all streaming platforms as well as on the choir’s website.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p><strong>Karen Frank, </strong>General Manager, <a href="mailto:karen.frank@ottawabachchoir.ca">karen.frank@ottawabachchoir.ca</a></p>
<p><strong>Dr. Lisette Canton, </strong>Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with chamber ensemble and soloists</p>
<p>Lisette Canton, conductor</p>
<p><strong>                                                </strong></p>
<p><strong><em>The Maestro of San Marco</em></strong></p>
<p><strong>Saturday, March 2, 2024, 8:00 p.m.</strong></p>
<p>Knox Presbyterian Church, 120 Lisgar Street, Ottawa</p>
<p>Tickets: Reserved $55, Adult $45, Senior $40, Student $20, Children 12 and under free</p>
<p>Tickets are available online: <a href="http://www.ottawabachchoir.ca">www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-the-maestro-of-san-marco/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir presents The Maestro of San Marco" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-presents-the-maestro-of-san-marco/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
			<div id="post-5396" class="post">
				<h2 class="title"><a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-22nd-season-with-magnificat/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir opens 22nd season with Magnificat">Ottawa Bach Choir opens 22nd season with Magnificat</a></h2>
				<div class="byline">Posted on October 2nd, 2023 by oadmin</div>
				<div class="entry">
					<p>The JUNO award-winning Ottawa Bach Choir (OBC) presents the first concert of its 22<sup>nd</sup> season, <strong><em>Magnificat</em></strong>, on Saturday, December 2, 2023, 8:00 p.m., at St. Matthew’s Church, 130 Glebe Avenue, in Ottawa. The concert features settings of the <em>Magnificat, </em>including the original setting by Johann Sebastian Bach, composed for his first Christmas in Leipzig in 1723, as well as settings by Jan Dismas Zelenka and Heinrich Biber, both originally from the Czech Republic, and the Italian Isabella Leonarda, Also included is the virtuosic cantata for solo soprano and trumpet by Bach, <em>Jauchzet Gott in allen Landen,</em> BWV 51. The Theatre of Early Music baroque orchestra joins the choir, along with guest soloists, soprano Myriam Leblanc, countertenor Daniel Taylor, tenor Owen McCausland, and bass Alex Dobson.</p>
<p><em>“We are thrilled to </em><em>open our 22<sup>nd</sup> season with an array of spectacular and rarely heard settings of the </em>Magnificat<em>, culminating in the original music Bach composed as Thomaskantor in Leipzig in 1723, along with virtuosic music for solo soprano and trumpet,” </em>says Founder and Artistic Director, Lisette Canton.<em> “Come share our passion as we celebrate this festive season with magnificent works from the Baroque period with some of today’s leading musicians in this style—you won’t want to miss it!”</em></p>
<p>The Ottawa Bach Choir, founded in 2002 by Dr. Lisette Canton, offers audiences a wide range of choral music of the finest quality, performing music from all historical periods while keeping Bach’s choral oeuvre as the focus of its repertoire. With the combination of a scholarly and emotional approach, the OBC provides an unforgettable experience of choral music at its best. The OBC won the 2020 JUNO Award for its album, <em><strong>Handel: Dixit Dominus; Bach &amp; Schütz: Motets</strong></em>, in the category Classical Album of the Year: Vocal or Choral, and returned from the prestigious international festival, <em>Bachfest Leipzig</em>, in June 2022. The OBC has toured extensively in Canada, Europe, the United States and China, and had the honour of being the first Canadian choir ever to be among the performers in <em>Bachfest Leipzig 2014</em>. The choir’s eighth album, <strong><em>Johann Sebastian Bach: Six Motets</em></strong>, on the ATMA Classique label, <em>“one of the finest on record” </em>(The WholeNote), is available on all streaming platforms as well as on the choir’s website.</p>
<p>&nbsp;</p>
<p><strong>For interviews and information, please contact:</strong></p>
<p>Elena Goubanova, Administrative Manager, <a href="mailto:elena.goubanova@ottawabachchoir.ca">elena.goubanova@ottawabachchoir.ca</a></p>
<p>Dr. Lisette Canton, Founder and Artistic Director, <a href="mailto:lisette.canton@ottawabachchoir.ca">lisette.canton@ottawabachchoir.ca</a></p>
<p>&nbsp;</p>
<p>Listing information:</p>
<p><strong>Ottawa Bach Choir</strong></p>
<p>with Theatre of Early Music baroque orchestra; Daniel Taylor, artistic director</p>
<p>Guest soloists: soprano Myriam Leblanc, countertenor Daniel Taylor, tenor Owen McCausland, and bass Alex Dobson</p>
<p>Lisette Canton, conductor</p>
<p><strong>                                                </strong></p>
<p><strong><em>Magnificat</em></strong></p>
<p>Saturday, December 2, 2023, 8:00 p.m.</p>
<p>St. Matthew’s Church, 130 Glebe Avenue, Ottawa</p>
<p>Tickets: Reserved $55, Adult $45, Senior $40, Student $20, Children 12 and under free</p>
<p>Tickets are available online:<a href="https://ottawabachchoir.ca/en/product/magnificat/"> www.ottawabachchoir.ca</a></p>
<p>Information: <a href="mailto:info@ottawabachchoir.ca">info@ottawabachchoir.ca</a></p>
				</div>
				<div class="meta">
					<p class="links">
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-22nd-season-with-magnificat/" rel="bookmark" title="Permanent Link to Ottawa Bach Choir opens 22nd season with Magnificat" class="more">Read full article</a>
						<b>|</b>
						<a href="https://ottawabachchoir.ca/en/ottawa-bach-choir-opens-22nd-season-with-magnificat/#respond" class="comments" >No Comments</a>					</p>
				</div>
			</div>

		
		<div class="navigation">
			<div class="alignleft"></div>
			<div class="alignright"><a href="https://ottawabachchoir.ca/en/page/2/?format=feed&#038;type=rss" >Next Entries &raquo;</a></div>
		</div>

	
	</div>



<div style="clear:both;"></div>


 







<div id="foot">
<div id="wrap"  class="pad2">






<div id="fbox">
<h1>About OBC</h1>
<div class="line"></div>
​<a href="#">Current Season</a><br>
​<a href="/en/category/media-releases/">News</a><br>
​<a href="/en/about/choir-biography/">Choir Biography</a><br>
​<a href="/en/about/lisette-canton/">Lisette Canton</a><br>
​<a href="/en/about/choir-members/">Choir Members</a><br>
​<a href="/en/contact/">Contact Us</a>
</div>



<div id="fbox">
<h1>OTTAWA BACH CHOIR</h1>
<div class="line"></div>
Mailing Address:<br>
137 Blackdome Crescent<br>
Ottawa, Ontario K2T 1A7<br>
CANADA<br>
info@ottawabachchoir.ca
</div>



<div id="fbox" class="stay">
<h1>Online Store</h1>
<div class="line"></div>
<b>Bach: Six Motets</b><BR>
The Ottawa Bach Choir's latest recording on the ATMA Classique label can be purchased here. 
<BR><BR>
<a href="/product/bach-six-motets/" class="redbtn">Purchase CD</a>
</div>



</div>
</div>

<div id="copy">
<div id="wrap" class="pad">
Copyright © 2025 Ottawa Bach Choir. All Rights Reserved. <a href="http://www.vanquishla.com" alt="Ottawa web design">Ottawa web design VanquishLA</a>
</div>
</div>








        <script type="text/javascript">
            var ajaxurl = "https://ottawabachchoir.ca/wp-admin/admin-ajax.php";
            var inpost_lang_loading = "Loading ...";
            var inpost_is_front = true;
            var pn_ext_shortcodes_app_link = "http://ottawabachchoir.ca/wp-content/plugins/inpost-gallery/";
        </script>
        			<button type="button"  aria-controls="rmp-container-4411" aria-label="Menu Trigger" id="rmp_menu_trigger-4411"  class="rmp_menu_trigger rmp-menu-trigger-boring">
								<span class="rmp-trigger-box">
									<span class="responsive-menu-pro-inner"></span>
								</span>
					</button>
						<div id="rmp-container-4411" class="rmp-container rmp-container rmp-slide-left">
							<div id="rmp-menu-title-4411" class="rmp-menu-title">
									<span class="rmp-menu-title-link">
										<img class="rmp-menu-title-image" src="https://ottawabachchoir.ca/wp-content/uploads/2020/05/OBC-Logo-Letters-Burgundy.png" alt="" width="100" height="100" /><span></span>					</span>
							</div>
			<div id="rmp-menu-wrap-4411" class="rmp-menu-wrap"><ul id="rmp-menu-4411" class="rmp-menu" role="menubar" aria-label="Default Menu"><li id="rmp-menu-item-110" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >About<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="About"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-73" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/about/choir-biography/"  class="rmp-menu-item-link"  role="menuitem"  >Choir Biography</a></li><li id="rmp-menu-item-97" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/about/lisette-canton/"  class="rmp-menu-item-link"  role="menuitem"  >Founder and Artistic Director</a></li><li id="rmp-menu-item-95" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/choir-members/"  class="rmp-menu-item-link"  role="menuitem"  >Choir Members</a></li><li id="rmp-menu-item-96" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/about/guest-artists/"  class="rmp-menu-item-link"  role="menuitem"  >Guest Artists</a></li><li id="rmp-menu-item-98" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/about/our-team/"  class="rmp-menu-item-link"  role="menuitem"  >Our Team</a></li><li id="rmp-menu-item-94" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/about/choir-history/"  class="rmp-menu-item-link"  role="menuitem"  >Choir History</a></li></ul></li><li id="rmp-menu-item-112" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >Concerts<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="Concerts"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-5909" class=" menu-item menu-item-type-post_type menu-item-object-product rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product/season-series-2024-2025/"  class="rmp-menu-item-link"  role="menuitem"  >Season Series 2024-2025</a></li><li id="rmp-menu-item-5912" class=" menu-item menu-item-type-post_type menu-item-object-product rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product/bach-christmas-oratorio-bwv-248/"  class="rmp-menu-item-link"  role="menuitem"  >BACH: CHRISTMAS ORATORIO, BWV 248</a></li><li id="rmp-menu-item-5911" class=" menu-item menu-item-type-post_type menu-item-object-product rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product/polychoral-extravaganza/"  class="rmp-menu-item-link"  role="menuitem"  >POLYCHORAL EXTRAVAGANZA</a></li><li id="rmp-menu-item-5910" class=" menu-item menu-item-type-post_type menu-item-object-product rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product/gloria/"  class="rmp-menu-item-link"  role="menuitem"  >GLORIA!</a></li><li id="rmp-menu-item-408" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/concerts/concert-archives/"  class="rmp-menu-item-link"  role="menuitem"  >Concert Archives</a></li></ul></li><li id="rmp-menu-item-3209" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-top-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/digital-concert-hall/"  class="rmp-menu-item-link"  role="menuitem"  >Digital Concert Hall</a></li><li id="rmp-menu-item-311" class=" menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/concerts/special-events/"  class="rmp-menu-item-link"  role="menuitem"  >Special Events<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="Special Events"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-5928" class=" menu-item menu-item-type-post_type menu-item-object-product rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product/bach-beer-2/"  class="rmp-menu-item-link"  role="menuitem"  >BACH &#038; BEER</a></li><li id="rmp-menu-item-310" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/support/intimate-concert-series/"  class="rmp-menu-item-link"  role="menuitem"  >Host an Intimate Concert</a></li></ul></li><li id="rmp-menu-item-116" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >News<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="News"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-74" class=" menu-item menu-item-type-taxonomy menu-item-object-category rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/category/media-releases/"  class="rmp-menu-item-link"  role="menuitem"  >Media Releases</a></li><li id="rmp-menu-item-182" class=" menu-item menu-item-type-taxonomy menu-item-object-category rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/category/concert-reviews/"  class="rmp-menu-item-link"  role="menuitem"  >Concert Reviews</a></li><li id="rmp-menu-item-181" class=" menu-item menu-item-type-taxonomy menu-item-object-category rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/category/cd-reviews/"  class="rmp-menu-item-link"  role="menuitem"  >CD Reviews</a></li></ul></li><li id="rmp-menu-item-119" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >Education<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="Education"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-105" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/community-outreach/"  class="rmp-menu-item-link"  role="menuitem"  >Community Outreach</a></li></ul></li><li id="rmp-menu-item-118" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >Media<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="Media"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-580" class=" menu-item menu-item-type-taxonomy menu-item-object-product_cat rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/product-category/cds-en/discography-en/"  class="rmp-menu-item-link"  role="menuitem"  >Discography</a></li><li id="rmp-menu-item-92" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/media-resources/"  class="rmp-menu-item-link"  role="menuitem"  >Media Resources</a></li><li id="rmp-menu-item-91" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/photo-gallery/"  class="rmp-menu-item-link"  role="menuitem"  >Photo Gallery</a></li></ul></li><li id="rmp-menu-item-117" class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children rmp-menu-item rmp-menu-item-has-children rmp-menu-top-level-item" role="none"><a  href="#"  class="rmp-menu-item-link"  role="menuitem"  >Support<div class="rmp-menu-subarrow">▼</div></a><ul aria-label="Support"
            role="menu" data-depth="2"
            class="rmp-submenu rmp-submenu-depth-1"><li id="rmp-menu-item-134" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/friends-of-the-obc/"  class="rmp-menu-item-link"  role="menuitem"  >Friends of the OBC</a></li><li id="rmp-menu-item-132" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/support/corporate-sponsorship/"  class="rmp-menu-item-link"  role="menuitem"  >Sponsorship</a></li><li id="rmp-menu-item-133" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/support/donate/"  class="rmp-menu-item-link"  role="menuitem"  >Donate</a></li><li id="rmp-menu-item-130" class=" menu-item menu-item-type-post_type menu-item-object-page rmp-menu-item rmp-menu-sub-level-item" role="none"><a  href="https://ottawabachchoir.ca/en/support/volunteer/"  class="rmp-menu-item-link"  role="menuitem"  >Volunteer</a></li></ul></li></ul></div>			<div id="rmp-search-box-4411" class="rmp-search-box">
					<form action="https://ottawabachchoir.ca/" class="rmp-search-form" role="search">
						<input type="search" name="s" title="Search" placeholder="Search" class="rmp-search-box">
					</form>
				</div>
						</div>
			<link rel='stylesheet' id='wc-blocks-style-css' href='http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css?ver=1748226415' type='text/css' media='all' />
<style id='core-block-supports-inline-css' type='text/css'>
/**
 * Core styles: block-supports
 */

</style>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/accordion-shortcode-and-widget/js/bootstrap.js?ver=6.6.2" id="wpsm_ac-sh_bootstrap-js-front-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/accordion-shortcode-and-widget/js/accordion.js?ver=6.6.2" id="call_ac-sh-js-front-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-includes/js/dist/hooks.js?ver=2e6d63e772894a800ba8" id="wp-hooks-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script>
<script type="text/javascript" id="wp-i18n-js-after">
/* <![CDATA[ */
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.6" id="swv-js"></script>
<script type="text/javascript" id="contact-form-7-js-translations">
/* <![CDATA[ */
( function( domain, translations ) {
	var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
	localeData[""].domain = domain;
	wp.i18n.setLocaleData( localeData, domain );
} )( "contact-form-7", {"translation-revision-date":"2024-03-18 08:32:04+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"Error:":["Error:"]}},"comment":{"reference":"includes\/js\/index.js"}} );
/* ]]> */
</script>
<script type="text/javascript" id="contact-form-7-js-before">
/* <![CDATA[ */
var wpcf7 = {
    "api": {
        "root": "https:\/\/ottawabachchoir.ca\/wp-json\/",
        "namespace": "contact-form-7\/v1"
    }
};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.6" id="contact-form-7-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.js?ver=9.8.5" id="sourcebuster-js-js"></script>
<script type="text/javascript" id="wc-order-attribution-js-extra">
/* <![CDATA[ */
var wc_order_attribution = {"params":{"lifetime":1.0000000000000000818030539140313095458623138256371021270751953125e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/ottawabachchoir.ca\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.js?ver=9.8.5" id="wc-order-attribution-js"></script>
<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6LcUtHIkAAAAANPu1B1SlZfbUEciE-32PbxkfhRU&amp;ver=3.0" id="google-recaptcha-js"></script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-includes/js/dist/vendor/wp-polyfill.js?ver=3.15.0" id="wp-polyfill-js"></script>
<script type="text/javascript" id="wpcf7-recaptcha-js-before">
/* <![CDATA[ */
var wpcf7_recaptcha = {
    "sitekey": "6LcUtHIkAAAAANPu1B1SlZfbUEciE-32PbxkfhRU",
    "actions": {
        "homepage": "homepage",
        "contactform": "contactform"
    }
};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.0.6" id="wpcf7-recaptcha-js"></script>
<script type="text/javascript" id="ivory-search-scripts-js-extra">
/* <![CDATA[ */
var IvorySearchVars = {"is_analytics_enabled":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="http://ottawabachchoir.ca/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js?ver=5.5.11" id="ivory-search-scripts-js"></script>
</body>
</html>