-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpastevents.html
More file actions
717 lines (717 loc) · 51 KB
/
pastevents.html
File metadata and controls
717 lines (717 loc) · 51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
<!DOCTYPE html>
<html>
<head>
<title>Canada-China Cultural Development Association: Past Events</title>
<link rel="stylesheet" href="CSS/pastevents.css">
<script type="text/javascript" src="Script/jquery-3.5.1.min.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<div id="windowSizeAlert">
<center><h5>Please resize your window for a better viewing experience</h5>
<h5>▼</h5>
<button id="button1" onclick="newWindow1()">Click here to open up a window that is more suitable for this website.</button>
<button id="button2" onclick="newWindow2()">Click here to open up a window that is more suitable for this website.</button></center>
</div>
<script>
function newWindow1() {
myWindow = window.open(window.location.href, "", "width=" + (window.screen.height*1.8) + ", height=" + window.screen.height);
close();
}
function newWindow2() {
myWindow = window.open(window.location.href, "", "width=" + window.screen.width + ", height=" + (window.screen.width/1.8));
close();
}
var w = window.innerWidth;
var h = window.innerHeight;
if ((w/h) > 2.73) {
$("#windowSizeAlert").css("display","block");
$("#button1").css("display","block");
}
if ((w/h) < 1.56) {
$("#windowSizeAlert").css("display","block");
$("#button2").css("display","block");
}
$(window).on('resize', function(){
var w = window.innerWidth;
var h = window.innerHeight;
if ((w/h) > 2.73) {
$("#windowSizeAlert").css("display","block");
$("#button1").css("display","block");
$("#button2").css("display","none");
}
if ((w/h) < 1.56) {
$("#windowSizeAlert").css("display","block");
$("#button2").css("display","block");
$("#button1").css("display","none");
}
if ((w/h) >1.56 && (w/h)<2.73) {
$("#windowSizeAlert").css("display","none");
$("#button1").css("display","none");
$("#button2").css("display","none");
}
});
</script>
<div id="header">
<a href="index.html"><div id="headerCompanyLogo">
<img id="logoRed" src="Images/logoRed.png">
<img id="logoWhite" src="Images/logoWhite.png">
</div></a>
<div id="headerCompanyName">
<span>C</span>
<span>C</span>
<span>C</span>
<span>D</span>
<span>A</span>
</div>
<a href="index.html"><div id="headerHome">Home</div></a>
<div id="headerEducationdropdown">
<a href="education.html"><div id="headerEducation">Education</div></a>
<div id="headerEducationContent">
<div><a href="educationSymphony.html">Symphony Orchestra</a></div>
<div><a href="educationPiano.html">Piano & Teaching</a></div>
<div><a href="educationChoir.html">CICF & Choir</a></div>
<div><a href="educationArts.html">Dance, Art & Drama</a></div>
</div>
</div>
<div id="headerEventsdropdown">
<a href="events.html"><div id="headerEvents">Events</div></a>
<div id="headerEventsContent">
<div><a href="events2020.html">2020 Events</a></div>
<div><a href="pastevents.html">Past Events</a></div>
</div>
</div>
<div id="headerAboutdropdown">
<a href="about.html"><div id="headerAbout">About</div></a>
<div id="headerAboutContent">
<div><a href="about.html#whatWeDo1">What We Do</a></div>
<div><a href="about.html#history1">History</a></div>
<div><a href="about.html#board1">Board & Staff</a></div>
<div><a href="about.html#reviews1">Reviews</a></div>
</div>
</div>
<script>
$("#sidebarcontainer").css("height",document.height);
$("#headerEventsdropdown").mouseenter(function(){
$("#headerEventsContent").show(200);
})
$("#headerEventsdropdown").mouseleave(function(){
$("#headerEventsContent").hide(200);
})
$("#headerAboutdropdown").mouseenter(function(){
$("#headerAboutContent").show(200);
})
$("#headerAboutdropdown").mouseleave(function(){
$("#headerAboutContent").hide(200);
})
$("#headerEducationdropdown").mouseenter(function(){
$("#headerEducationContent").show(200);
})
$("#headerEducationdropdown").mouseleave(function(){
$("#headerEducationContent").hide(200);
})
</script>
<a href="contact.html"><div id="headerContactUs">Contact Us</div></a>
</div>
<div id="pasteventsIntro">
<img src="Images/danceDramaSoloDancer.jpg">
<div id="title">
<center><div id="pasteventsIntroTitle">Past Events</div></center>
</div>
<div id="pasteventsIntroSubtitle">Check out our previous productions</div>
<script>
$(document).ready(function(){
setTimeout(function() {
$("#pasteventsIntroTitle").animate({
opacity: "1"
});
}, 400);
setTimeout(function() {
$("#pasteventsIntroSubtitle").animate({
opacity: "1"
});
}, 800);
});
</script>
</div>
<div id="sidebarcontainer">
<div id="sidebar">
<a href="#l2019">◦2019</a>
<a href="#l2018">◦2018</a>
<a href="#l2017">◦2017</a>
<a href="#l2016">◦2016</a>
<a href="#l2015">◦2015</a>
</div>
</div>
<div class="pageSection" id="l2019"></div>
<div id="d2019">
<h1>2019</h1>
<h5>
01 2019 CICF<br>
02 "Enchanting<br> China"<br>
03 "Mulan"<br>
04 "One Heart"<br>
05 Hanggai<br> Rock Band<br>
</h5>
<div class="diva">
<div class="blocka"></div>
<div id="img20191" class="imgadiv"></div>
<h2 class="titlea">01</h2>
<h3 class="namea">2019 Canada International Choral Festival<br><br>July, 2019</h3>
<p class="texta">The 3rd Canada International Choral Festival (CICF 2019) and the 1st Sino-Canada International Choral Festival took place on July 26-28, 2019.
<br><br>The 2019 lineup featured a diverse range of choirs and vocal groups, spanning genres like music of Canada, Mexico, Africa, China and more. The returning artists included crowd favorites, such as Cadence, the Glisten Quartet, and the Mexican Mariachi Band with tenor Romulo Delgado. Together, they demonstrated their vocal and choral skills on the last evening Exchange Concert at the Markham P.C.C Auditorium, 22 Esna Park Drive, Markham, ON L3R 1E1. Also, the first-time participant, the Neema Children’s Choir, performed for this concert besides their showcase in the opening and the competition.
<br><br>
Back for a second year were the Canadian-Chinese choirs from Montreal, Ottawa, Waterloo, and Toronto, whose fusion of Chinese culture and Canadian music kept the audience exhilarated all day long at last year’s fest. They are the Breeze of Harmony Choir, the Montreal Hua Xia Philharmonic Choir, the Yangtze River Performing Arts, the Kaleidoscope Chinese Performing Arts, the Tsinghua Alumni Performing Arts Group, the Red Maple Sunset Glow Cultural Association, and the Waterloo Chinese Philharmonic Choir.
</p>
</div>
<div class="divb">
<div class="blockb"></div>
<div id="img20192" class="imgbdiv"></div>
<h2 class="titleb">02</h2>
<h3 class="nameb">"Enchanting China" USA West Coast Tour<br><br>June, 2019</h3>
<p class="textb">
Following the success of this year's Chinese New Year concert by the China Broadcasting Chinese Orchestra in Canada in collaboration with distinguished Canadian musicians, CCCDA again collaborated with the China Broadcasting Chinese Orchestra and held several concerts, this time, in the United States of America's beautiful west coast cities San Francisco, Los Angeles, and Seattle.
<br><br>
Under the baton of celebrated conductor Pang Ka Pang and with world renowed musicians, the China National Broadcasting Orchestra has created new forms of classic Chinese music with a more modern interpretation. They have used the universal language of music to bridge the gap between all the fascinating cultures of the world, through exciting and informative music. Audiences immersed themselves in new soundscapes and broaden their musical horizons with an incomparable taste of Chinese music.
</p>
</div>
<div class="diva">
<div class="blocka"></div>
<div id="img20193" class="imgadiv"></div>
<h2 class="titlea">03</h2>
<h3 class="namea">Mulan - Chinese Original Ballet tours North America<br><br>September, 2019</h3>
<p class="texta">
The Chinese Original Ballet “Mulan” is produced by Liaoning Ballet Group (Liaoning Ballet, or Liaoba)
<br><br>
The ballet drama Hua Mulan was staged in Canadian cities Toronto, Ottawa and Montreal in September 2019.
<br><br>
Produced by the Liaoning Ballet of China, it attempts to interpret the classic Chinese story of Hua Mulan through dance and music for contemporary audiences.
<br><br>
Mulan’s name originally appeared in the The Ballad of Mulan, an ancient Chinese poem composed based on the life story of Hua Mulan dating back to over 1000 years ago. Mulan, the valiant daughter, volunteered to join the army on behalf of her ailing father to defend her country. Despite her well-known military exploits, Hua Mulan excused herself from an official title and accolades, and returned to her hometown to live an ordinary life after the war.
</p>
</div>
<div class="divb">
<div class="blockb"></div>
<div id="img20194" class="imgbdiv"></div>
<h2 class="titleb">04</h2>
<h3 class="nameb">Theatre play "One Heart"<br><br>August, 2019</h3>
<p class="textb">
In August 2019, CCCDA invited the theatre play "One Heart" to be performed in Vancouver and Toronto, Canada. The China Performing Arts Group organized the tour of the theatre drama. Produced by Beijing Longmashe Culture Communication Co., Ltd., the play was written by the renowned playwrite Zou Jingzhi, and performed by three famous actors Zhang Guoli, Wang Gang and Zhang Tielin.
<br><br>
"One Heart" tells a moving story of three strangers who run business in the historic Dongan trading market, and at the most trying time become friends with a tie as close as brothers during China's turbulent times at the end of the Qing Dynasty and the early Republic of China. But the three brothers, with contrasting personalities, are also very different in their way of life, about women, generosity, ambition, loyalty, business calculation, benevolence and righteousness.
<br><br>
To create this theatre drama, Mr. Zou Jingzhi devoted over ten years of his time, many versions of the script to enrich its unique Beijing colour, and the historical features. The play was specially tailored to fit the three main characters, performed by the three actors, the so-called "iron triangle".
</p>
</div>
<div class="diva">
<div class="blocka"></div>
<div id="img20195" class="imgadiv"></div>
<h2 class="titlea">05</h2>
<h3 class="namea">The Return of Honggai Rock Band to Canada<br><br>September, 2019</h3>
<p class="texta">
Following the great success of the first Canada tour in 2009, Hang Gai Rock Band toured Canada again in September 2019. The band is a unique fusion of world music and rock cross-border groups. Their music originates from the vast Inner Mongolia Prairie but grows in the modern cosmopolitan Beijing. As a Chinese new age band with passion for nature, freedom and life, they pursuit an exuberant sense with dynamic energy, merging the modern musical creation and performance with classic Mongolian folk tune, history and traditional culture.
<br><br>
The uniqueness of their performances, free and wild but with sincerity and restrained strength, has won praises over the world.
<br><br>
In September, they performed in Vancouver, Toronto, and Ottawa.
</p>
</div>
</div>
<div class="pageSection" id="l2018"></div>
<div id="d2018">
<h1>2018</h1>
<div class="intro2">
<h5>
01 "Life between Heaven and Earth"<br>
02 "My Dream"<br>
03 Second International Choral Festival<br>
04 Sichuan Folk Arts Research Institute<br>
05 The China Broadcasting Symphony Orchestra<br>
06 "Stage"
</h5>
</div>
<div class="div2a">
<h2 class="title2a">01</h2>
<h3 class="name2a">China National Centre for the Performing Arts presents theatre play "Life between Heaven and Earth"</h3>
<p class="text2a">The one-man show Life between Heaven and Earth is an adaptation of the novella The True Story of Ah Q by the renowned Chinese writer Lu Xun, performed by Su Xiaogang.
<br><br>
It is a cold rainy night with a bleak autumn wind. Ah Quei is beheaded for being a member of the Chinese Revolutionary Party, and his soul starts wandering through Weizhuang, the town where he lived before his death.
<br><br>
Feeling embittered, the spirit of the dead man looks back on his short life and tries to understand the cause of his miserable fate. He consults wise men, the noble lords in Weizhuang and his enemy, but they are unable to help. He is confused by his death and feels hatred towards the cold world.
<br><br>
The confused and angry spirit asks himself the same question, but doesn’t find an answer. He sighs helplessly, suspended in his life between Heaven and Earth. His ruminations on human nature turn into dreary, sorrowful rain.
</p>
<div class="img2adiv" id="img20181">
</div>
</div>
<div class="transition2" id="transition21"></div>
<div class="div2b">
<h2 class="title2b">02</h2>
<h3 class="name2b">My Dream—China Disabled People Performing Arts Troupe Performs in Canada</h3>
<p class="text2b">
The extraordinary China Disabled People’s Performing Art Troupe was
back following Canadian’s royal welcome in 2012.
<br><br>The Troupe featured a cast of some 52 professional artists - acrobats, musicians, singers and dancers. They are in their 20’s and are all handicapped. Some cannot hear, some cannot see, some have mobility issues. At each performance, the public gives the artists a standing ovation moved by their breathtaking performance as much
as by the emotion that transcends all barriers of languages and cultures. The public also discovers new art forms such as language poems, dance by visually impaired artists and dance with sign language.
</p>
<div id="img20182" class="img2bdiv"></div>
</div>
<div class="div2a">
<h2 class="title2a">03</h2>
<h3 class="name2a">Second International Choral Festival<br><br>September, 2018</h3>
<p class="text2a">
This festival was born out of the recognition that there is a significant value in promoting the choral arts, as it inspires various choral groups and communities with different cultural backgrounds and performing styles to work together, exchange ideas and create new experiences; it thus contributes to multicultural prosperity in Canada. The Festival was held successfully in the National Capital of Ottawa, Canada on September 21-23, 2018.
<br><br>
The Canada International Choral Festival aims to build an international extensive art exchange and display platform in Canada. Through a series of choral festivals, concerts, master classes and the integration of choral art, our hope is that the Festival will help enhance the understanding of chorus art and encourage different Interactions and cooperation between countries, regions and groups. The Festival showcases a variety of talents, shares and disseminates musical, artistic and cultural traditions, and promotes Canadian multiculturalism.
<br><br>
The Festival Organizers consist of internationally well-known choral field conductors, educators, reviewers and other experts.
</p>
<div id="img20183" class="img2adiv"></div>
</div>
<div class="div2b">
<h2 class="title2b">04</h2>
<h3 class="name2b">Performance by Sichuan Folk Arts Research Institute at the Parliament Hill<br><br>July, 2018</h3>
<p class="text2b">
In the evening of July 11, 2018, at the Parliament Hill, Ottawa, the Sichuan folk artists gave Ottawa audience a fabulous performance.
<br><br>
The performance, presented by the Sichuan Folk Arts Research Institute, showcased many “National Treasures” from Sichuan Province, China, including those performed on ancient musical instruments, Sichuan opera segments, as well as demonstrations of paper-cutting, sugar-making, sugar painting.
<br><br>
The CCCDA also invited the local Ottawa C5 Children's Choir to sing the Canadian and Chinese national anthems at the opening.
<br><br>
At the end of the performance, the Minister Councilor of Culture at the Chinese Embassy Mr. Zhao Haisheng, the president of the Sichuan Folk Arts Research Institute Shen Jun, and the President of CCCDA Rudy Gao gave interviews to the People’s Daily news media.
<br><br>
The next day, the Sichuan performers traveled to Toronto and performed at the Richmond Hill Centre of Performing Arts on July 13th (Friday).
</p>
<div id="img20184" class="img2bdiv"></div>
</div>
<div class="transition2" id="transition22"></div>
<div class="div2a">
<h2 class="title2a">05</h2>
<h3 class="name2a">Film music concerts by the China Broadcasting Symphony Orchestra<br><br>January, 2018</h3>
<p class="text2a">
Specially designed for the North American audience, the concert featured music by the greatest film music legends, such as Oscar-winning composers John Williams, Ennio Morricone, James Horner, and Hans Zimmer. Always evolving to include special Chinese music genre, the program also featured top Chinese classic hits as Wang Liping's Shao Ling Temple, Lei Zhang Bang's Visitors on the Icy Mountain, and the music score from the Dream of Red Chamber. The China Broadcasting Symphony Orchestra delivered the quintessential holiday concert, captivating the audience with their unique selection of Chinese traditional and western classic favorites.
<br><br>
Founded in 1949, as the earliest China national symphony orchestra, the China Broadcasting Film Symphony Orchestra (CBFSO) has performed and recorded music of nearly 2,000 films, TV dramas and documentaries. Since its first tour abroad in 1992, the orchestra has performed in more than 40 countries on five continents, worked closely with renowned conductors, composers, dancers and performers. Whether at home or on tour, their concerts are always in high demand and frequently sold out. In recent years the Orchestra created innovatively a number of audience favorite big screen audio-visual film concerts, light concerts and other forms of concerts.
</p>
<div id="img20185" class="img2adiv"></div>
</div>
<div class="div2b">
<h2 class="title2b">06</h2>
<h3 class="name2b">Theatre comedy drama "Stage"<br><br>September, 2018</h3>
<p class="text2b">
In September 2018, it is with great pleasure that the CCCDA brought a highly popular theatre drama "Stage" to the Canadian audience. This theatre comedy piece was created by the distinguished screenwriter Yu Yue, directed by the celebrated comedy show director Chen Peisi, and performed by renowned artists such as Chen Peisi and Yang Lixin. The drama was produced in early 2015, and since then has been enjoyed by millions of the audience.
<br><br>
The plot: In early Republic of China, the warlords melee. When Marshal Hong just entered Peking, the famous Peking opera troup "Five celebrations" is getting ready for a three-day performance featuring their most popular performer Jin Tianxiao. At the backstage, the troupe owner Mr. Hou and the theater manager Mr. Wu are immersed in the joy of their ticket box success. But with many characters including Marshal Hong, gangsters, street peddlers, a run-away concubine entangled together at the same time, things are getting messy and dangerous...
<br><br>
"Stage" tells the story of the day that happens at the backstage of the troupe, turning the stage 180 degrees, and breaking the conventional stage space concept. The usually mysterious backstage is revealed to the audience on the stage, while the usual stage performance is turned into "behind the scenes".
</p>
<div id="img20186" class="img2bdiv"></div>
</div>
<div class="transition2" id="transition23"></div>
</div>
<div class="pageSection" id="l2017"></div>
<div id="d2017">
<h1>2017</h1>
<h5>
01 Zhejiang Youth Symphony Orchestra<br>
02 "Wild Grass"<br>
03 "Golden Lotus" Ballet<br>
04 2017 OICF<br>
05 "Embrace China"<br>
06 China Broadcasting Film Symphony Orchestra
</h5>
<div class="transition3" id="transition31"></div>
<div class="div3a">
<h2 class="title3a">01</h2>
<h3 class="name3a">Beijing Dance Theatre performs dance prose the Wild Grass<br>September, 2017</h3>
<div class="div3adiv">
<div id="img20171" class="img3adiv1"></div>
<p class="text3a1">Renowned for the alluring fusion of Chinese tradition with a fiercely modern sensibility, Ballet Wild Grass is adapted from the poetry collection Wild Grass written by Chinese literary giant Lu Xun in 1927.</p>
<div id="img20172" class="img3adiv2"></div>
<p class="text3a2">Comprising three movements, “Dead Fire,” “Farewell of the Shadow,” and “Dance of Extremity”, Wild Grass unfolds as an evocative abstraction of Lu’s volatile elemental landscapes, accompanied by solo piano, strings, and experimental electronica.</p>
<div id="img20173" class="img3adiv3"></div>
<p class="text3a3">White paper leaves scatter underfoot as dancers alternate between balletic grace and tension, conjuring the fragility and vitality of the human spirit.</p>
<div id="img20174" class="img3adiv4"></div>
<p class="text3a4">It has been toured more than 100 performances in BAM theatre of New York, Kennedy Center of Washington, Harris Theatre of Chicago, and many other main city theatres in USA, Europe and Australia.</p>
</div>
</div>
<div class="div3b">
<h2 class="title3b">02</h2>
<h3 class="name3b">Zhejiang Youth Symphony Orchestra visits Canadian cities<br>July, 2017</h3>
<p class="text3b">
In 2017, Canada celebrated its 150th anniversary, and 150th anniversary of Ottawa city as well.
<br><br>
Under the auspice of these exciting events, it is with great pleasure that the CCCDA presented the Zhejiang Youth Symphony Orchestra (ZYSO) to the Canadian audience.
<br><br>
On July 28, in collaboration with the Canadian Sinfonietta Youth Orchestra, the ZYSO presented their first concert at the Toronto P.C. Ho Theatre. Over sixty young musicians from two countries jointly delivered interpretations of the Yao Dance, Overture de Carmen, Frühlingsstimmen Walzer,op.410, Jasmin and many other different styles of international music pieces. The audience had a wonderful evening with enjoyable experience on a wide range of musical performances.
<br><br>
Outdoor symphony concert by Zhejiang Youth Symphony Orchestra was presented on the evening of August 2 at the landmark of Canada-Parliament Hill, just before the light show which has more than 30 years history. As an event of Canada150 and Ottawa150, specially invited VIP guests, including Chinese Ambassador of Canada, MPs, MPPs and City councilors, representatives from the city and partner institutes attended the concert. The concert was open to public.</p>
</p>
</div>
<div class="transition3" id="transition32"></div>
<div class="div3c">
<div class="img3cdiv" id="img20175"></div>
<h6>◖</h6>
<h2 class="title3c">03</h2>
<h3 class="name3c">Golden Lotus Ballet: Eastern Madame Bovary and her Unfortunate Love<br><br>September, 2018</h3>
<p class="text3c">
Labeled by many as an infamous tale of sexual desires, the fascinating classic Chinese novel, Jin Ping Mei, made another mark in history with its world premiere Ballet Golden Lotus debut in Hong Kong. Now it is touring Canada.
<br><br>
With beautiful costumes and sets, rich traditional and contemporary music, and tight choreography, Ballet Golden Lotus tells the story of a 1500s Chinese “Madame Bovary” – Beauty Golden Lotus whose unfortunate love, with the tiger slayer Wu Sung, the high dignitary Xi Men Qin, and her humble peddler husband Wu Da, led her to a bloody desperate ending. Told in four acts, "Prelude," "Wu Sung," "Xi Men," and “Lian,” the dance drama's structure reflects the characters’ struggles in expressive passages of dance and music, through a wonderful combination of timelessness and a great deal of mystery, intrigue and the excitement of it being set in a time we didn't live in.
<br><br>
Adapting the most famous Chinese ancient erotica and presenting it to people from a prudish and sexually repressive culture, as the production was about to tour China after its great success in Hong Kong, it became the focus of fiery debate in the media - resulting in its prohibition throughout the country because of its controversial content. Tamed some scenes in order to pass muster, Golden Lotus was finally being staged on the mainland China, but three years after its debut in Hong Kong.
<br><br>
Golden Lotus, getting to the heart of its title character in an efficient 90 minutes, is a great and novel experience for theatre lover.
</p>
</div>
<div id="transition33" class="transition3"></div>
<div class="div3b">
<h2 class="title3b">04</h2>
<h3 class="name3b">2017 Ottawa International Choral Festival<br><br>January, 2017</h3>
<p class="text3b">
The Canada-China Cultural Development Association had the honour of launching the first Ottawa International Choral Festival (OICF), on Saturday, January 28, 2017. This new OICF festival showcased all things choral, including a massed choir on Parliament Hill and an inaugural concert! There was participation from choirs from Ottawa, including the Ottawa Bach Choir, the Christ Church Cathedral Choir of Men and Boys, the Rideau Chorale, the Cantata Singers of Ottawa and the Ewashko Singers, as well as those with a Chinese choral emphasis from Canada, the United States, and China.
<br><br>
Because of the invaluable significance of promoting choral arts with respect to contributing to multicultural prosperity in Canada, and realizing the unlimited potential of communication, cooperation and exchange amongst various choral groups and communities with different heritage backgrounds and performing styles, this festival was born.
</p>
</div>
<div class="div3d">
<iframe id="embraceChinaVideo" src="https://www.youtube.com/embed/wEbIWjPw-WI" frameborder="0" autoplay="autoplay" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</iframe>
<h2 class="title3d">05</h2>
<h3 class="name3d">Variety Show "Embrace China"<br><br>January, 2017</h3>
<p class="text3d">
To celebrate the fantastic occasion of Lunar New Year, on January 6, 2017, the CCCDA presented a spectacular Chinese variety show “Embrace China”. This show was brought to Toronto by the China Federation of Returned Overseas Chinese, and showcased songs performed by the renowned Chinese folk singers Dong Yuanhua, Chen Junhua, and Zhang Yuanming, acrobatic performances by the famous China Acrobatic Performing Troupe, instrumental music, and many many more. This show brought to Toronto Chinese community the warm greetings from the motherland, with best wishes for good health and prosperity in the new year.
<br><br>
This show was organized by the China Federation of Returned Overseas Chinese, and managed by the CCCDA, 美加华语FM102.7, Canada China Culture Arts Association, supported by the 加拿大专卖品集团承办,and assisted by the Canada Multi-culture Association and Canada China Education Association.
</p>
</div>
<div class="div3a">
<h2 class="title3a">06</h2>
<h3 class="name3a">2017 Film musical celebration by the China Broadcasting Film Symphony Orchestra</h3>
<div class="div3adiv">
<div id="img20176" class="img3adiv1"></div>
<p class="text3a1">Founded in 1949, as the earliest China national symphony orchestra, the China Broadcasting Film Symphony Orchestra (CBFSO) has performed and recorded music of nearly 2,000 films, TV dramas and documentaries. Since its first tour abroad in 1992, the orchestra has performed in more than 40 countries on five continents, worked closely with renowned conductors, composers, dancers and performers. </p>
<div id="img20177" class="img3adiv2"></div>
<p class="text3a2">Centrepointe Theatres was packed house on Wednesday night, which for China Broadcasting Film Symphony Orchestra felt like testimony of their larger cultural mission and one-year journey to put it all together.</p>
<div id="img20178" class="img3adiv3"></div>
<p class="text3a3"></p>
<div id="img20179" class="img3adiv4"></div>
<p class="text3a4">Whether at home or on tour, their concerts are always in high demand and frequently sold out. In recent years the Orchestra created innovatively a number of audience favorite big screen audio-visual film concerts, light concerts and other forms of concerts.</p>
</div>
</div>
</div>
<div class="pageSection" id="l2016"></div>
<div id="d2016">
<h1>2016</h1>
<div id="d2016a">
<div id="d20161">
<h5>01 “Beauty of Chinese Calligraphy"</h5>
<h3>+ expand</h3>
<p>To celebrate the 2015-2016 People-to-People Culture Exchange between Canada and China, on October 6, 2016, the CCCDA hosted a “Beauty of Chinese Calligraphy - Calligrapher Mr. Cui Renhui Exhibition” in Ottawa Shaw Centre. Mr. Cui is an adjunct professor at the South China University. Since his childhood, he has studied Chinese calligraphy, painting, seal cutting, and photography, and is a highly accomplished artist. He will present several styles of calligraphy tracing back to the very long history of Chinese calligraphic evolution.
<br><br>
Prime Minister Justin Trudeau sent a congratulatory letter to the calligraphy exhibition, praising the exhibition for providing the opportunity for Chinese Canadians to trace the roots, and enrich the Canada’s multiculturalism. Mr. Trudeau expressed thanks to calligrapher Cui Renhui for sharing his artistic achievements and to the organizers of the event, the China-Canada Cultural Development Association, for organizing the exhibition. The Chargé d'affaires ad interim of Chinese Embassy Mr. Wang Wentian also sent a congratulatory letter to the exhibition. The Minister Counselor of Culture at the Chinese Embassy Mr. Zhao Haisheng, and several other dignitaries also participated in the event and viewed the exhibition. The exhibition also held workshops for young children. </p>
</div>
<hr>
<div id="d20162">
<h5>02 China National Academy of Painting Artists</h5>
<h3>+ expand</h3>
<p>As part of the 2015-2016 People-to-People Culture Exchange between Canada and China, a delegation of artists from the China National Academy of Painting visited Canadian cities including Toronto, Niagara Falls, Kingston, Ottawa, and Montreal. They visited museums, art galleries, parks, and countryside, and painted wherever they went, drawing inspiration from Canadian landscape. The CCCDA hosted their tour. </p>
</div>
<hr>
<div id="d20163">
<h5>03 Theatre Play “Tea House”</h5>
<h3>+ expand</h3>
<p>The renowned Beijing People’s Arts Theatre performed the famous contemporary Chinese theatre play “Tea House” in Toronto and Vancouver. “Tea House” is the masterpiece creation by the renowned late Chinese playwright and novelist Lao She. “Tea House” is one of the most performed Chinese plays around the world, a signature production of the Beijing People’s Art Theatre. The play, which was staged over half a century ago, is a social and cultural commentary on the problems and changes in China during the early twentieth century. Since 1956, “Tea house” has performed over 600 times, including those that were successfully staged in France, Switzerland, Hamburg and many other countries.
<br><br>
Set in an old tea house in downtown Beijing, the play is typical of Lao She's art style that seeks to provide a panoramic view of Chinese history and culture in their transformation from tradition to modernity. “Tea house” spans fifty years in modern Chinese history from the collapse of the Qing dynasty and the Republican Revolution to the birth of the People's Republic. The play brings together over sixty characters, representing all walks of life. It is noted for its vivid portrayal of characters and lively use of Beijing dialect, but its main thrust lies in Lao She's vision of history, which is prophetic of later political movements and its disastrous effects on the ordinary Chinese people. The tea house in the ancient capital of Beijing was a witness and a microcosm of the times.
<br><br>
The artists also participated in seminars on Chinese culture, theatre and literary arts at the University of Toronto and the University of British Columbia.</p>
</div>
<hr>
<div id="d20164">
<h5>04 Classic Dance Opera Worrior Canadian<br> Premiere</h5>
<h3>+ expand</h3>
<p>The Chinese classic dance drama Opera Warriors premiered in Canada on January 5, 2016, at the Queen Elizabeth Theatre in Vancouver. The show features a mix of modern dance, acrobatics, and martial arts. Theatre experts say the performance has both modern and traditional elements. This wonderful event was part of the 2015-2016 People-to-People and Culture Exchange program between the two countries. CCCDA coordinated this event.</p>
</div>
<hr>
<div id="d20165">
<h5>05 Chinese New Year Flash Mop</h5>
<h3>+ expand</h3>
<p>On January 23, 2016, CCCDA organized a Flash Mop to celebrate Chinese New Year. As the symbol of peace, order and good governance, the Parliament Hill was the excellent place to celebrate the Canadian values and cultural diversity. A 60-member marching band, a Ottawa choir group, and folk and dragon dancesrs performed many happy songs and dances. Many community representatives, including the Federal Minister of Environment and Climate Catherine McKenna, and the Counsellor of Culture from the Chinese Embassy, participated in this event.</p>
</div>
<hr>
</div>
<div id="d2016b">
<div id="d20166">
<h5>06 Guo Degang Comedy Night in Toronto</h5>
<h3>+ expand</h3>
<p>To celebrate the Mid Autumn Festival (Chinese Thanksgiving), CCCDA presented Guo Degang Comedy Show to Toronto audience on September 13, 2016. This comedy troupe has become one of the most popular comedy groups in China in recent years, and has attracted audience young and old. They have travelled to many countries to entertain oversea Chinese communities around the world. This event is sponsored by OTT Group. The 4-hour show in Toronto was a huge success where the Massy Hall was fully packed. After the show, a huge crowd of fans asked for autography. </p>
</div>
<hr>
<div id="d20167">
<h5>07 Little Friends Arts Troupe Performs for <br> Charity</h5>
<h3>+ expand</h3>
<p>On September 30, 2016, the China's most famous Shanghai Little Friends Arts Troupe traveled to Toronto and Montreal, Canada, and performed songs and dances for charitable causes. It was great success and attracted audience to donate for children's cherity causes. They also visited a seniors ' nursing home and entertained for seniors. The Little Friends Troupe was founded by Madam Song Qingling, the widow of Mr. Sun Yat Sen.</p>
</div>
<hr>
<div id="d20168">
<h5>08 Peking Opera Shakespeare's Hamlet</h5>
<h3>+ expand</h3>
<p>The Canada-China Cultural Development Association commits to bringing the best performing arts to Canadian audience. During the 2016 China’s National Day season in October, CCCDA will collaborate with the CCCTV to present the Peking Opera version of Shakespeare’s Hamlet to the Canadian audience. This show will be performed by the famous Shanghai Peking Opera House who has travelled around the world to present various classic and modern Peking operas. During their touring in Canada, the Shanghai Peking Opera House will use the traditional Peking Opera language to interpret Hamlet this legendary Western story. </p>
</div>
<hr>
<div id="d20169">
<h5>09 Cultures of China Variety Show </h5>
<h3>+ expand</h3>
<p>CCCDA and Toronto CCCTV present Cultures of China Variety Show on February 27, 2016, at Toronton Sony Centre, to celebrate the Year of Monkey.</p>
</div>
<hr>
<div id="d201610">
<h5>10 Shenzhen Symphony Orchestra</h5>
<h3>+ expand</h3>
<p>As a component of the 2015-2016 People-to-People and Culture Exchange program between the Canada and China, on February 14 and 16, 2016, the Chinese New Year and St. Valentine's Day, CCCDA presented Shenzhen Symphony Orchestra to major Canadian cities, including Ottawa, Toronto and Montreal.</p>
</div>
<hr>
<div id="d201611">
<h5>11 Montreal en Lumiere: Shenzhen as Featured <br> City</h5>
<h3>+ expand</h3>
<p>MONTRÉAL EN LUMIÈRE is one of the largest winter festivals in the world, an annual celebration registering 1 300,000 festival site visits from fans experiencing the joy of Montreal wintertime through a unique program combining performing arts, gastronomy, free outdoor family activities, and a full night of exquisitely original discoveries!
<br><br>
As part of the 2015-2016 People-to-People Culture Exchange between Canada and China, the Chinese city Shenzhen is featured during this festival. The featured international city at MONTRÉAL EN LUMIÈRE this year, Shenzhen ranks among the wealthiest and most populous cities in China, with some 11 million inhabitants. Located in Southern China’s Guangdong Province, the municipality was still largely rural in the 1970s, but has experienced spectacular economic and demographic growth to now figure among the country’s most flourishing urban areas. Today, Shenzhen is a leading city in the arts, culture, tourism, innovation, and music, with its globally renowned symphony orchestra, and cosmopolitan gastronomy at the crossroads of different culinary influences.
<br><br>
Shenzhen food not only inherited the tradition of Cantonese Cuisine, one of China’s four major cuisines but also absorbed the essence of almost all the local cuisines in China, as well as the essence of Japanese, South Korean, Southeast Asian, French and Italian food. Furthermore, it develops into various types of food which can better fit modern urban people’s eating habits, and is more nutritious, delicious and of fine artistic design. At MONTRÉAL EN LUMIÈRE, famous chefs from Futian Shangri-La Hotel and Grand Mercure Oriental Ginza Hotel will present the essence of Shenzhen food.
<br><br>
And like Montreal, Shenzhen, a member of the UNESCO Creative Cities Network since 2008, has also been recognized as a UNESCO City of Design. That’s why a collaboration between MONTRÉAL EN LUMIÈRE and Shenzhen was absolutely natural, and the Montreal event will unveil plenty of surprises from China throughout its different programs: gastronomy, the arts, and on the free outdoor site!</p>
</div>
<hr>
</div>
<script>
$("#d20161").click(function(){
if ($("#d20161 > p").height() == 0) {
$("#d20161 > h3").html('- collapse');
var autoHeight = $("#d20161 > p").css('height', 'auto').height();
$("#d20161 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20161 > h3").html('+ expand');
$("#d20161 > p").css('height','0');
}
});
$("#d20162").click(function(){
if ($("#d20162 > p").height() == 0) {
$("#d20162 > h3").html('- collapse');
var autoHeight = $("#d20162 > p").css('height', 'auto').height();
$("#d20162 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20162 > h3").html('+ expand');
$("#d20162 > p").css('height','0');
}
});
$("#d20163").click(function(){
if ($("#d20163 > p").height() == 0) {
$("#d20163 > h3").html('- collapse');
var autoHeight = $("#d20163 > p").css('height', 'auto').height();
$("#d20163 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20163 > h3").html('+ expand');
$("#d20163 > p").css('height','0');
}
});
$("#d20164").click(function(){
if ($("#d20164 > p").height() == 0) {
$("#d20164 > h3").html('- collapse');
var autoHeight = $("#d20164 > p").css('height', 'auto').height();
$("#d20164 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20164 > h3").html('+ expand');
$("#d20164 > p").css('height','0');
}
});
$("#d20165").click(function(){
if ($("#d20165 > p").height() == 0) {
$("#d20165 > h3").html('- collapse');
var autoHeight = $("#d20165 > p").css('height', 'auto').height();
$("#d20165 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20165 > h3").html('+ expand');
$("#d20165 > p").css('height','0');
}
});
$("#d20166").click(function(){
if ($("#d20166 > p").height() == 0) {
$("#d20166 > h3").html('- collapse');
var autoHeight = $("#d20166 > p").css('height', 'auto').height();
$("#d20166 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20166 > h3").html('+ expand');
$("#d20166 > p").css('height','0');
}
});
$("#d20167").click(function(){
if ($("#d20167 > p").height() == 0) {
$("#d20167 > h3").html('- collapse');
var autoHeight = $("#d20167 > p").css('height', 'auto').height();
$("#d20167 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20167 > h3").html('+ expand');
$("#d20167 > p").css('height','0');
}
});
$("#d20168").click(function(){
if ($("#d20168 > p").height() == 0) {
$("#d20168 > h3").html('- collapse');
var autoHeight = $("#d20168 > p").css('height', 'auto').height();
$("#d20168 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20168 > h3").html('+ expand');
$("#d20168 > p").css('height','0');
}
});
$("#d20169").click(function(){
if ($("#d20169 > p").height() == 0) {
$("#d20169 > h3").html('- collapse');
var autoHeight = $("#d20169 > p").css('height', 'auto').height();
$("#d20169 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d20169 > h3").html('+ expand');
$("#d20169 > p").css('height','0');
}
});
$("#d201610").click(function(){
if ($("#d201610 > p").height() == 0) {
$("#d201610 > h3").html('- collapse');
var autoHeight = $("#d201610 > p").css('height', 'auto').height();
$("#d201610 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d201610 > h3").html('+ expand');
$("#d201610 > p").css('height','0');
}
});
$("#d201611").click(function(){
if ($("#d201611 > p").height() == 0) {
$("#d201611 > h3").html('- collapse');
var autoHeight = $("#d201611 > p").css('height', 'auto').height();
$("#d201611 > p").css({
height: 'auto;',
transition: 'all .3s linear'
});
} else {
$("#d201611 > h3").html('+ expand');
$("#d201611 > p").css('height','0');
}
});
</script>
</div>
<div class="pageSection" id="l2015"></div>
<div id="d2015">
<h1>2015</h1>
<div>
<img src="Images/pipaMusician.jpg">
<h5>“East-meets-West” concert in Ottawa and Toronto</h5>
<p>A rare and delightful experience, audiences enjoyed very exotic evenings featuring the distinguished Pipa master Lin Jiaqing from Beijing China, and “Yadong Guan Trio – pipa guitar and cello”. The Pipa, a four-stringed traditional Chinese instrument is one of the oldest instruments still in use today.</p>
</div>
<div>
<img src="Images/heehaComedyGroup.jpg">
<h5>The Hee-Ha Comedy Group in China Tours Canada</h5>
<p>The Hee-Ha Comedy Group, led by Gao Xiaopan, toured Canada in September 2015. This group of young comedians, all belonging to the millennium generation, has become a comedy sensation in China, and is highly sought after by generations young and old. They visited Vanouver, Toronto and Ottawa.</p>
</div>
<div>
<img src="Images/acrobaticsJump.jpg">
<h5>Acrobats from Chinese Hebei Acrobatic Troupe performed in Toronto, Canada</h5>
<p>Acrobats from Chinese Hebei Acrobatic Troupe performed during the Acrobatic Session of the 2015-2016 China-Canada Cultural Exchanges Year in Toronto, Canada, May 2, 2015. It’s amazing!</p>
</div>
<div>
<img src="Images/goldenSailArtTroupe.jpg">
<h5>Golden Sail Art Troupe Tours Canada</h5>
<p>To celebrate the 66th anniversary of People’s Republic of China and the 70th anniversary of the ending of the Second World War, Beijing Golden Sail Art Troupe tours Canada, and participates in a series of events. Golden Sail Art Troupe was founded in 1986 in Beijing, and consists of middle school students who are talented in performing arts and music. This event is also a component of the 2015-2016 People-to-People Culture Exchange between Canada and China.</p>
</div>
<div>
<img src="Images/acrobaticsPerformers.jpg">
<h5>The National Chinese Acrobats Touring In Canada</h5>
<p>The National Chinese Acrobats toured in Canada in April for 15 performances. The 20 Chinese performers mesmerize and mystify with their stunning displays of the best in Chinese martial arts, illusion, acrobatics, music, dance and drama in a thrilling display of artistry and daredevil acts.
Founded in 1959 in the province of Hunan, the troupe has produced a large number of nationally and internationally recognized and award-winning programs.</p>
</div>
<div id="d2015last">
<img src="Images/chineseNewYearCarnival.jpg">
<h5>Chinese New Year Carnival</h5>
<p>Chinese New Year Carnival China 2015 (CNY Carnival China 2015) is one of China’s most celebrated cultural shows. It is a production by China Broadcasting Performing Arts Troupe from Beijing and hosted by Chinese Cultural Development Association and the North American Chinese Student association which toured around Canada from February 25th to March14th.
This Chinese New Year extravaganza was a theatrical hybrid, presenting cultural treasures of China from a new unique perspective. Made up of 60 top-level artists and entertainers, the China Broadcasting Performing Arts Troupe dazzled audiences with their dynamic and multi-ethnic productions.
</div>
</div>
<center><a id="events2020Btn" href="events2020.html">View 2020 Events</a></center>
<div id="footer">
<hr>
<div id="footerLogoDiv">
<a href="index.html">
<img src="Images/CCCDAlogo.png">
</a>
<div id="mc_embed_signup">
<form action="https://ocdsb.us2.list-manage.com/subscribe/post?u=3c41640258b3b732f1452a14e&id=53252c0114" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL">Subscribe</label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_3c41640258b3b732f1452a14e_53252c0114" tabindex="-1" value=""></div>
</form>
</div>
</div>
<!--<p>Culture in Art.</p>-->
<div id="footer2">
<div class="footerDiv">
<h3>Explore</h3>
<p><a href="index.html">Home</a></p> •
<p><a href="events.html">Events</a></p> •
<p><a href="education.html">Education</a></p> •
<p><a href="about.html">About</a></p> •
<p><a href="contact.html">Contact Us</a></p>
</div>
<div class="footerDiv">
<h3>Follow</h3>
<p><a href="https://twitter.com/cccda_ca?lang=en">Twitter</a></p> •
<p><a href="https://www.facebook.com/Canada-China-Cultural-Development-Association-364911953578051/about/">Facebook</a></p> •
<p><a href="https://www.youtube.com/channel/UCcUF1BexqaJodTvNv5hy8BQ/featured">YouTube</a></p> •
<p><a href="https://ca.linkedin.com/in/rudy-gao-75435455?trk=public_profile_browsemap_profile-result-card_result-card_full-click">LinkedIn</a></p>
</div>
</div>
<div onclick="backToTop()" id="backToTopButton">
<img id="backToTopOutline" src="Images/backToTopOutline.png">
<img id="backToTopFill" src="Images/backToTopFill.png">
</div>
<script>
function backToTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</div>
</body>
</html>