-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakers.html
1981 lines (1778 loc) · 81.1 KB
/
speakers.html
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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="description" content="Be inspired by the latest tech, entertained by Sweden’s hottest musical exports and connect with the greatest minds of our time. This is a chance to invest in or partner up with tomorrow’s stars within tech and music before the rest of the world catches on.">
<meta name="keywords" content="GLOBAL MUSIC BUSINESS, LISTED COMPANIES, MUSIC AND TECH EVENT">
<meta name="author" content="At Night Management">
<title>WELCOME TO THE CREATIVE CAPITAL OF THE WORLD - SYMPOSIUM</title>
<link rel="shortcut icon" href="/images/Symposium_logo_bl_master.png" type="image/x-icon" />
<meta property="og:title" content="Symposium Stockholm" />
<meta property="og:type" content="web" />
<meta property="og:image" content="/images/200.jpg" />
<meta property="og:url" content="http://symposium.co.se" />
<meta property="og:description" content="Be inspired by the latest tech, entertained by Sweden’s hottest musical exports and connect with the greatest minds of our time. This is a chance to invest in or partner up with tomorrow’s stars within tech and music before the rest of the world catches on." />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="//use.typekit.net/xiz0jwa.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" href="vendors/slicknav.css">
<script src="vendors/jquery.popup.min.js"></script>
<link rel="stylesheet" href="css/popup.css">
</head>
<body class="light">
<!-- Preloader -->
<div id="preloader">
<div id="status"> </div>
</div>
<div class="logo"><a href="http://symposium.co"><img id="blacklogo" src="images/Symposium_logo_bl.svg"></a></div>
<ul id="menu">
<li><a href="program.html">Program 2015</a></li>
<li><a href="brilliant-minds-conference.html">Brilliant Minds Conference 2015</a></li>
<li><a href="speakers.html" class="active">Speakers 2015</a></li>
<li><a href="tickets.html">Tickets</a></li>
<li><a href="contact-press.html">Contact / Press</a></li>
<li><a href="thank-you.html">Thank you</a></li>
</ul>
<div class="ngwrap">
<div class="container">
<!-- *************************************************************************************************************************************** -->
<!-- *************************************************************************************************************************************** -->
<style type="text/css">
#info, #info .image-overlay, #info .splash-content {
height: auto !important;
min-height: 500px;
position: static;
}
#info .maxbredd {
max-width: 1000px; padding:80px 0;display: inline-block;width: 100%;
}
.maxbredd img {
height: auto;
margin: 0 auto;
width: 250px;
text-align: center;
}
table{color: black;}
.hundra {
color: black;}
.titleavskilj {
background: white none repeat scroll 0 0;
color: black;
float: left;
margin: 30px 0 0;
text-align: center;
width: 100%; padding: 4px 0;
}
.tgbold{height: 5px; border-color: white !important;}
.tgbold {
float: left !important;
height: 5px !important;
}
.headline {
float: left;
font-weight: 400;
letter-spacing: 2px;
margin: 30px 0;
width: 100%;
text-align: center;
}
.tg td, .tg th {
border-color: white;
}
.popup_content > img {
display: block;
height: auto;
margin: 0 auto;
max-height: inherit;
text-align: center;
width: auto;
}
.popup_content > p {
color: black;
float: left;
height: auto;
margin: 20px;
width: auto;
}
.popup_content {
box-shadow: none !important;
display: table !important;
height: auto !important;
margin: 0 auto !important;
max-width: 800px;
padding: 0 !important;
width: 100%;
}
.popup_back{background: white !important;opacity: 1 !important;overlfow-y: scroll;}
.popup_close {
background: white none repeat scroll 0 0;
color: #888;
cursor: pointer;
font-size: 70px !important;
font-weight: lighter !important;
line-height: 35px;
padding: 10px 0 !important;
position: fixed !important;
right: 0 !important;
text-align: center;
top: 0 !important;
width: 100%;
}
.popup_cont {
left: 0 !important;
position: fixed; !important;
top: 55px !important;
width: 100% !important;
bottom: 0;
right: 0;
height: auto;
overflow-y:scroll;
max-height:800px;
}
.popup {
box-shadow: none !important;
margin: 0 auto !important;
padding: 0 20px !important;
width: auto;
height: auto;
}
.puscroll{}
.speakerwrap {
float: left;
height: auto;
width: 100%;
margin: 10px 0 100px;
}
.onespeaker {
float: left;
height: 260px;
width: 25%;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
margin: 0 0 20px;
}
.case .pmarg {
border: 4px solid white;
height: auto;
width: auto;
margin: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#options {
margin: 30px 0;
}
.case .pmarg a {
display: table;
height: 100%;
width: 100%;
opacity: 1;
}
.case .pmarg a:hover div span{
background:rgba(255, 255, 255, 0.5);
}
.case .pmarg a div{display: table-cell;vertical-align: bottom;text-align: center;}
.case .pmarg a div span {
background:rgba(255, 255, 255, 1);
float: left;
padding: 2px 0;
border-bottom: 2px solid black;
width: 100%;
color: black;
}
.onespeaker > .pmarg img {
float: left !important;
height: auto !important;
width: 100% !important;
}
button {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: 1px solid black;
font-style: italic;
margin: 0 4px;
padding: 5px 14px;
font-family: "brandon-grotesque",sans-serif;
}
button:hover,.is-checked {
background: black;
color: white;
}
</style>
<section id="info" class="info cd-section fillinside brilliantinfo" style="background:white;color:black;">
<div class="image-overlay">
<div class="splash-content">
<div class="fade-left">
<div class="maxbredd">
<div class="hundra" style="text-align:center;">
<div class="pmarg">
<div class="titleavskilj">
<h2>SPEAKERS</h2>
<p style="text-align:center;">Click on the names to read more</p>
</div>
<div class="option-set filter-button-group button-group js-radio-button-group" data-isotope-key="filter" id="options">
<button class="button is-checked" data-isotope-value="*">Show all</button>
<button class="button" data-isotope-value=".brilliant">Brilliant Sessions</button>
<button class="button" data-isotope-value=".unicorn">Unicorn Showcase</button>
<button class="button" data-isotope-value=".music">Music Performance</button>
<button class="button" data-isotope-value=".host">Hosts</button>
</div>
<div class="speakerwrap" id="newslist">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/prinsdaniel.jpg');">
<div class="pmarg">
<a href="#inline-prinsdaniel" class="jquery_popup-prinsdaniel"><div><span><strong>HRH Prince Daniel</strong><br/> </span></div></a>
<div id="inline-prinsdaniel" style="display:none">
<img src="speakerimg/prinsdaniel.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">HRH Prince Daniel</h3>
<p>
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case host" style="background-image: url('speakerimg/wegelius.jpg');">
<div class="pmarg">
<a href="#inline-wegelius" class="jquery_popup-wegelius"><div><span><strong>Annie Wegelius</strong><br/>Media Entrepreneur & Sr. Advisor</span></div></a>
<div id="inline-wegelius" style="display:none">
<img src="speakerimg/wegelius.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Annie Wegelius, Media Entrepreneur, Host & Sr. Advisor, Brilliant Minds Conference</h3>
<p>
Before joining SVT, as Director of Programmes, in May 2007, Annie had already been an
entrepreneurial part of the TV and media industry for 25 years. She was one of the founding team of
TV3, Scandinavia’s first commercial broadcaster, where she was the channels first programme
director. She then founded and headed her own production company Wegelius TV, which grew to
become one of the leading independent producers in the Nordic region. After selling the company to
Bonniers, she went on to create one of Europe’s first elearning companies; Kworld which operated
the first privately owned digital terrestrial broadcast channel in Sweden. <br/><br/>
She founded the Swedish Television Academy Awards and the annual Swedish TV Industry
conference, Kristallen and acted as its chairperson until her appointment at SVT.<br/><br/>
At SVT Annie headed the Commissioning Board, creating the content strategy and was responsible
for commissioning of all content for five broadcast channels and Sweden’s leading online video site.
Under her leadership SVT became the broadcaster that has had the biggest increase in market share
of all European Public Broadcasters.<br/><br/>
Annie has been an integral part in the modernisation of Swedish public service television and
continues to play an important role as an advisor in areas of creative development strategies and the
collaboration with the independent production industry.<br/><br/>
Annie has also been a board member at the Royal Institute of Technology in Stockholm for a number
of years as well as acting on several boards of incubators focusing on new media. Annie currently
serves on the board of Ellos ,the leading Eretailer in the Nordic region. Annie is also a director of the
Academy of Arts and Sciences that gives out the International Emmy Awards.<br/><br/>
Annie lives in Stockholm and Paris.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/astrom.jpg');">
<div class="pmarg">
<a href="#inline-astrom" class="jquery_popup-astrom"><div><span><strong>Peer Åström</strong><br/>Songwriter & Producer</span></div></a>
<div id="inline-astrom" style="display:none">
<img src="speakerimg/astrom.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Peer Åström Songwriter & Producer</h3>
<p>
3 time Grammy nominee Peer Astrom was off to a kick start on his career
in 2001, when the first song he ever wrote ended up on Celine Dion’s A
New Day Has Come, selling a total of 10.000.000 copies.
Other artist would follow; Madonna, Christina Aguilera, Miley Cyrus,
Enrique Iglesias, CeeLo Green, Cyndi Lauper and Mary J Blige just to
name a few.
In late 2008, Peer got asked to produce a couple of songs for a TVshow
pilot.
That show was Glee.
The show went on to become part of pop culture, nominated for more
than 190 awards, including 3 Grammys, winning more than 71 awards,
including Emmys, Golden Globes and People’s Choice Awards.
Sales are exceeding 45.000.000 singles and 12.000.000 albums.
And with 207 singles on the Billboard Hot 100, and 3 No.1’s on the
Billboard 200, the success is unprecedented.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/berk.jpg');">
<div class="pmarg">
<a href="#inline-berk" class="jquery_popup-berk"><div><span><strong>Tony Berk</strong><br/>BMG Talpa Music</span></div></a>
<div id="inline-berk" style="display:none">
<img src="speakerimg/berk.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Tony Berk Chairman of the Board, BMG Talpa Music (n.e.)</h3>
<p>
Tony Berk co-founded Talpa Music in 2004 which was sold to BMG Rights in 2014. He is responsible
for sourcing and developing composers and producers.
Also Tony was awarded with the Golden Harp in 2010, only the second music publisher to receive
this award. And The Feather in 1998, presented annually by the Dutch Music industry for outstanding
entrepreneurship.
He previously was manager at RCA Records an Director of Music Publishing at Roba Music Benelux;
founded the famous Dutch label Dino Music and successful music publisher TBM International which
were both sold to EMI in 2002. Tony served on the board and supervisory board of Buma and Stemra
for the maximum term of 16 years and served two terms as chairman of the Dutch Music Publishers
Association.
Tony’s music career began as a radio program leader, presenter, host and DJ. And has over 40 years
of experience in the music industry.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/natalia.jpg');">
<div class="pmarg">
<a href="#inline-natalia" class="jquery_popup-natalia"><div><span><strong>Natalia Brzezinski</strong><br/>Communications Strategist</span></div></a>
<div id="inline-natalia" style="display:none">
<img src="speakerimg/natalia.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Natalia Brzezinski Communications Strategist (Sweden/USA)</h3>
<p>
Natalia is a journalist, communication strategist and public speaker on behalf of U.S Embassy in Sweden,
focusing on women’s empowerment and entrepreneurship she tells the stories about successful female
entrepreneurs for an international audience .
<br/><br/>
Natalia Brzezinski is a journalist and communications strategist living in Stockholm, Sweden with her
husband Mark Brzezinski who serves as the U.S. Ambassador to Sweden. She is a columnist for The
Local Sweden, and a frequent public speaker on leadership, women’s empowerment, entrepreneurship
and using social media to advance social change.
As a passionate storyteller she is acknowledged for her interview series in the Local and The Huffington
Post, focusing on Swedish successful female entrepreneurs and leaders in politics, business and art. She
also cowrote with her husband, Mark Brzezinski who serves as the U.S. Ambassador to Sweden, a
personal blog on U.S. State Department’s web site, geared to sharing their experiences in Sweden.
Together they were the first diplomatic couple to write a joint blog, and one of the earliest to maximize
social media outlets to advance the message of the State Department and the White House.
In 2007 she worked in Senator John Kerry’s press office on Capitol Hill. In 20092010, she wrote for the
Huffington Post on issues of worklife balance and also launched an interview series focused on young
thoughtleaders and new generation business trends called “Millennial Perspectives”.
Brzezinski was born in Chicago, Illinois to and was a competitive ice skater for 13 years.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/bui.jpg');">
<div class="pmarg">
<a href="#inline-bui" class="jquery_popup-bui"><div><span><strong>Vu Bui</strong><br/>COO, Mojang</span></div></a>
<div id="inline-bui" style="display:none">
<img src="speakerimg/bui.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Vu Bui, COO, Mojang</h3>
<p>
Vu Bui is the COO of Mojang AB, makers of Minecraft. With a background in photography and
filmmaking he started working with Mojang in 2011 on media for the Minecraft property; a year later
he joined the company as COO. He works on business development, runs Minecraft in Education and
the Block by Block programme, and is a producer on the Minecraft movie with Warner Bros.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/carlsson.jpg');">
<div class="pmarg">
<a href="#inline-carlsson" class="jquery_popup-carlsson"><div><span><strong>Andreas Carlsson</strong><br/>Musical Entrepreneur</span></div></a>
<div id="inline-carlsson" style="display:none">
<img src="speakerimg/carlsson.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Andreas Carlsson, Musical Entrepreneur, Original Cheiron Member</h3>
<p>
Swedish born Andreas Carlsson is esteemed as one of the world’s finest and accomplished contemporary songwriters.
<br/><br/>
Swedish born Andreas Carlsson is esteemed as one of the world’s finest and accomplished
contemporary songwriters. He belongs to a rare fraternity of composers: selling over 150 million
albums and honored with four “Diamond Awards;” the “Export Prize” from the Swedish government;
five US “Grammy” nominations; two Emmy Awards, and the 2012 ASCAP Pop Music Award.
Andreas sees no barriers between the diverse sides of his creativity as author of three books; lead
judge on Swedish IDOL and XFactor; founder of “Academy Of Music and Business in 2013;”
designed nonprofit, World Childhood Foundation’s musical journey with Queen Silvia and Princess
Madeleine of Sweden; and signed band DIRTY LOOPS to a global deal and 2014 global album
launch with David Foster, Chairman of Verve Music Group as Verve’s first act.
As a musical entrepreneur, Andreas has developed the multifaceted brand and musical, which is
combining music, fashion, theater and TV casting in a seamless way, debuting in Las Vegas in late 2015.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/collins.jpg');">
<div class="pmarg">
<a href="#inline-collins" class="jquery_popup-collins"><div><span><strong>Chris Collins</strong><br/>Performing Artist</span></div></a>
<div id="inline-collins" style="display:none">
<img src="speakerimg/collins.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Chris Collins, Performing Artist</h3>
<p>
Chris Collins is one of Sweden’s latest music star, winner of the Swedish national contest Talang
2011, with his incredible stage presence and great dance moves he can catch the audience attention
with ease.
<br/><br/>
Chris Collins, born in Stockholm in 1999 and comes from a family rooted in both theater and dance. At
the age of 11, he became one of the youngest finalists on the Swedish television version of
“America's Got Talent”. After his participation in the show Chris was subjected to bullying at school
which negatively affected his self confidence. Chris's brother Timothy stepped in to help and made a
deal with him. If Chris promised to continue with his dance and follow his musical aspirations, Timothy
promised to write and produce music for him. “Emergency”, is the first result of this brotherly
collaboration. During its first week, it reached the top of the iTunes chart in Sweden and continues to
grow in popularity. With renewed self confidence Chris now embarks on a musical career. His
ambition is to help give strength to those who been victims of bullying through his artistry.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/yoder.jpg');">
<div class="pmarg">
<a href="#inline-yoder" class="jquery_popup-yoder"><div><span><strong>Shari Yoder Doherty</strong><br/>Partner, Communications, Atomico</span></div></a>
<div id="inline-yoder" style="display:none">
<img src="speakerimg/yoder.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Shari Yoder Doherty, Partner, Communications, Atomico</h3>
<p>
Shari brings her track record of building global consumer brands to help Atomico’s portfolio
companies with their brand and communications. Shari was an early employee at Danger, telling the
company’s story from the launch of the first TMobile Sidekick to the company’s international rollout
across Europe, Asia and the Americas, building a cult following for the device. Shari later rejoined
Danger and Android cofounder Andy Rubin at Google, where she led global communications for
Android and Google Play for over three years, launching new versions of the platform and flagship
devices across the world as the product scaled to over 1 billion users.<br/><br/>
Shari’s career has also taken in communications at disruptive internet startups across location
services, video, online shopping and delivery, as well as a period at Lucasfilm marketing the global
release of Star Wars Episode I. Shari also worked on the Clinton/Gore presidential campaign in 1996.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/elvesjo.jpg');">
<div class="pmarg">
<a href="#inline-elvesjo" class="jquery_popup-elvesjo"><div><span><strong>John Elvesjö</strong><br/>Co-founder & CTO, Tobii</span></div></a>
<div id="inline-elvesjo" style="display:none">
<img src="speakerimg/elvesjo.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">John Elvesjö, Co-founder & CTO, Tobii</h3>
<p>
Tobii is the global leader in eye tracking. Our vision is a world where all technology works in
harmony with natural human behavior. Tobii operates through three business units: Tobii
Dynavox makes specially designed computers that are controlled by eye movement or touch
screens for use by people with special needs due to spinal cord injuries, CP, ALS or other
medical conditions. Tobii Pro develops and sells eyetracking equipment and services used
today by more than 2,000 companies and 1,500 research institutions, including 49 of the
world’s 50 highest ranked universities. Tobii Tech further develops Tobii’s technology for
new volume markets such as computer games, personal computers and vehicles. Tobii is
headquartered in Sweden and is listed on Nasdaq Stockholm (TOBII). The group has
approximately 600 employees.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/fahrman.jpg');">
<div class="pmarg">
<a href="#inline-fahrman" class="jquery_popup-fahrman"><div><span><strong>Sofi Fahrman</strong><br/>Journalist & Fashion Reporter</span></div></a>
<div id="inline-fahrman" style="display:none">
<img src="speakerimg/fahrman.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Sofi Fahrman, Journalist & Fashion Reporter</h3>
<p>
Sofi Fahrman started her career at Swedish ELLE, moved on to Aftonbladet (Scandinavia's
largest circulation tabloid) and started Sofis Mode – a biweekly fashion magazine. Besides
blogging and being a creative director for her latest project (theyouway.com) a platform that
combines ecommerce with editorial content she has also written 5 best selling books and
hosted the Swedish version of Project Runway.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/hampp.jpg');">
<div class="pmarg">
<a href="#inline-hampp" class="jquery_popup-hampp"><div><span><strong>Andrew Hampp</strong><br/>Senior Correspondent, Billboard</span></div></a>
<div id="inline-hampp" style="display:none">
<img src="speakerimg/hampp.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Andrew Hampp, Senior Correspondent, Billboard</h3>
<p>
Andrew Hampp is Billboard's senior correspondent, focusing on the intersections of music, branding,
advertising and business. Since 2011, he's helped unearth trends and report cover stories on the
duelling music strategies of Coke and Pepsi; superstar artists such as Britney Spears, Pink, Mariah
Carey, Jennifer Lopez and Ryan Tedder; notable personalities like Guy Oseary, Troy Carter and
Scooter Braun and over a dozen executives from this year's Power 100. He previously worked at
Advertising Age for five years. He has contributed stories to The Hollywood Reporter, The Columbus
Dispatch, Crain's New York Business and Adweek and has appeared on "Today", "Good Morning
America", CNN, Bloomberg Television, "The Insider" and CBS Evening News.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/honkamaa.jpg');">
<div class="pmarg">
<a href="#inline-honkamaa" class="jquery_popup-honkamaa"><div><span><strong>Stina Honkamaa Bergfors</strong><br/>CEO and Co-Founder, United Screens</span></div></a>
<div id="inline-honkamaa" style="display:none">
<img src="speakerimg/honkamaa.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Stina Honkamaa Bergfors, CEO and Co-Founder, United Screens</h3>
<p>
Stina Honkamaa Bergfors is the CEO and cofounder of United Screens, a digital media company
working with rising online creators and talents. United Screens launched in the autumn of 2013 and
has since then become the largest MCN in the Nordic countries, working with many of the largest
YouTubechannels originated in Sweden, Norway, Finland and Denmark. Between 2008 and 2013,
Stina Honkamaa Bergfors was the Swedish country director of Google where she, among other
things, launched YouTube in Sweden 2008. Prior to that, she was the CEO of the media agency
Carat. Stina Honkamaa Bergfors is a board member of IKEA Ingka Holding BV and Eniro. She is an
Honorary Doctor of the Luleå University of Technology.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/wyclef.jpg');">
<div class="pmarg">
<a href="#inline-wyclef" class="jquery_popup-wyclef"><div><span><strong>Wyclef Jean</strong><br/>Songwriter & Producer</span></div></a>
<div id="inline-wyclef" style="display:none">
<img src="speakerimg/wyclef.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Wyclef Jean, Songwriter & Producer</h3>
<p>
"Producer, Writer, Composer, Philanthropist"
<br/><br/>
Wyclef Jean “Clef” is a music producer, songwriter and philanthropist. When seeing Clef in his
element, on stage; so completely comfortable, it’s easy to see him only as a performer. A short dive
into his history reveals we are only witnessing the tip of the iceberg. The flashpoint of his career
ignited when Clef teamed with Pras Michel and Lauryn Hill to join the band that would go on to
become the recordbreaking group, The Fugees. Their sophomore album The Score got two
Grammys, sold 15 million copies and was listed in Rolling Stones Magazine’s list of the 500 greatest
albums of all times.
His solo project The Carnival dropped and spun to Platinum certification and earned three more
Grammy nominations. In addition to his solo work, Clef emerged as prolific producer, developing
breakout single “No No No” for Destiny’s Child and the platinum single “My Love Is Your Love” for
Whitney Houston. Over the next decade, Whyclef hit the Grammy’s three more times, receiving
nominations for his collaborations Mary J. Blige, Jerry Duplessis and Shakira. Clef’s work around the
world and his broad musical background have put him at the forefront of world music.
Clef is currently working on his seventh studio album with Tim Berg “AVICII”, so get ready to hear the
Wyclef’s “Ecleftic” style drop again later this year.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/kouthoofd.jpg');">
<div class="pmarg">
<a href="#inline-kouthoofd" class="jquery_popup-kouthoofd"><div><span><strong>Jesper Kouthoofd</strong><br/>CEO, Teenage Engineering</span></div></a>
<div id="inline-kouthoofd" style="display:none">
<img src="speakerimg/kouthoofd.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Jesper Kouthoofd, CEO, Teenage Engineering</h3>
<p>
Teenage engineering creates high quality, well designed, electronic products for all
people who love sound and music.
The company was founded in 2007. Teenage engineering’s first product was the
OP1, a portable allinone synthesizer used by world famous artists.
OD11, the allinone loudspeaker made to play cloud music was exclusively
released at MoMA NYC summer 2014.
In January 2015 Teenage Engineering released a new line of musical instruments
called Pocket Operators and consists of three pocket sized synthesizers.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/knutsson.jpg');">
<div class="pmarg">
<a href="#inline-knutsson" class="jquery_popup-knutsson"><div><span><strong>Sebastian Knutsson</strong><br/>King</span></div></a>
<div id="inline-knutsson" style="display:none">
<img src="speakerimg/knutsson.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Sebastian Knutsson, Co-Founder & Chief Creative Officer</h3>
<p>
Sebastian Knutsson is the creative officer at King and one of the founders. Sebastian has more than
18 years of experience in the Internet industry. As chief creative officer, he leads the product strategy,
games development and service offerings for King. Before that, he was cofounder of Spray Ventures AB.
<br/><br/>
King is a leading interactive entertainment company for the mobile world. King have more than 185
fun titles in over 200 countries and regions. Hits include Candy Crush Saga, Farm Heroes Saga and
Bubble Witch Saga. In Q1 2015 King games reached 364 million average monthly unique users. The
company was founded in Stockholm 2003.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/lagerlof.jpg');">
<div class="pmarg">
<a href="#inline-lagerlof" class="jquery_popup-lagerlof"><div><span><strong>Johan Lagerlöf</strong><br/>CEO, X5 Music Group</span></div></a>
<div id="inline-lagerlof" style="display:none">
<img src="speakerimg/lagerlof.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Johan Lagerlöf, CEO, X5 Music Group</h3>
<p>
X5 Music is a Music company of the New Generation, specialized in streaming. Sitting on over 400
000 recordings, with a presence on services such as Spotify, Apple Music and Deezer, it rolls out 800
new album releases each month. X5 was the first company in the industry to introduce professionally
curated playlists and products customized for the digital market. Through targeted playlists, the X5
focus is to bring the world’s greatest music from the 50s, 60s 70s and 80s to a new demographic. The
company has had over 2 billion streams in genres like Classical, Jazz, World Music and Blues. X5
works with labels such as Decca, Blues Note, Verve, Sun Records and Deutsche Grammophon.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/larsson.jpg');">
<div class="pmarg">
<a href="#inline_larsson" class="jquery_popup_larsson"><div><span><strong>Zara Larsson</strong><br/>Singer</span></div></a>
<div id="inline_larsson" style="display:none">
<img src="speakerimg/larsson.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Zara Larsson, Singer on the Brilliant Sessions part</h3>
<p>
Zara Larsson is a young Swedish artist with a powerful voice on stage and on social media, with her
debut single "Uncover" she has reached an international audience and has been Swedish Grammy nominated.
<br/><br/>
At 15 years old, Zara Larsson took the world by storm after releasing a video on YouTube singing her
song ‘Uncover’. The song went on to become a massive hit, topping the charts and achieving multi
platinum status all over Scandinavia. In 2014, ‘Uncover’ was nominated ‘Song of the Year’ at the
Swedish Grammy Awards, as well as the P3 Gold Awards in Sweden After the success of ‘Uncover’,
Zara released her debut EP called ‘Introducing’. The EP reached multiplatinum status and would lead
to her winning “Female Artist of the Year” and “Breakthrough Artist of the Year” at the prestigious
Rockbjörnen Awards. In May 2014, Zara released her single ‘Carry You Home, which reached top 3
on the Swedish charts and has been awarded double platinum.
<br/><br/>
For the second year in a row, Zara was awarded a Rockbjörnen for “female artist of the year” and she
just recently released her latest single “Lush Life”.
<br/><br/>
Zara is credited as executive producer on the album.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/martocci.jpg');">
<div class="pmarg">
<a href="#inline-martocci" class="jquery_popup-martocci"><div><span><strong>Steve Martocci</strong><br/>Co-Founder & CEO, Splice</span></div></a>
<div id="inline-martocci" style="display:none">
<img src="speakerimg/martocci.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Steve Martocci, Co-Founder & CEO, Splice</h3>
<p>
Steve Martocci is CEO and cofounder of Splice, a platform that connects musicians and their tools
with the cloud. Before Splice, Steve cofounded GroupMe, a group messaging service that was
acquired by Skype in August 2011, and subsequently acquired by Microsoft in October 2011. Steve is
also a cofounder of BLADE, an app that allows users to book helicopter rides to Hamptons hotspots
in New York in seconds. Previously, Steve was a lead software engineer at Gilt Groupe and founded
Sympact Technologies and Bandwith.us. Steve graduated from Carnegie Melon University with a B.S.
in Information Systems and currently lives in New York City.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/parks.jpg');">
<div class="pmarg">
<a href="#inline-parks" class="jquery_popup-parks"><div><span><strong>Ken Parks</strong><br/>Chief Content Officer, Spotify</span></div></a>
<div id="inline-parks" style="display:none">
<img src="speakerimg/parks.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Ken Parks, Chief Content Officer, Spotify</h3>
<p>
Kenneth (Ken) Parks is Chief Content Officer at Spotify, where he has global responsibility
for the company’s content and distribution operations. He is also Managing Director of
Spotify USA, responsible for the company’s North American operations.
Ken has been responsible for all of Spotify’s licensing agreements in the U.S. and oversees
the U.S. office, based in New York City. He will drive U.S. growth and expansion of Spotify.
As an experienced senior digital media executive, Parks previously was a Senior Vice
President of Strategy and Business Development at EMI Music, where he had worldwide
commercial responsibility for exploiting EMI’s recorded music and video repertoire across
the spectrum of new music platforms. He was also General Counsel for a Web 1.0 music/
lifestyle company, GetMusic LLC, as well as worked at Reuters, AT&T and a private New
York law firm.
Parks is a graduate of Columbia University School of Law, where he was a Harlan Fiske
Stone Scholar. He also graduated Summa Cum Laude from Lafayette College and holds a
Masters Degree from Lehigh University.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/rosling.jpg');">
<div class="pmarg">
<a href="#inline-rosling" class="jquery_popup-rosling"><div><span><strong>Hans Rosling</strong><br/>Gapminder Foundation</span></div></a>
<div id="inline-rosling" style="display:none">
<img src="speakerimg/rosling.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Hans Rosling, Co-Founder & Chairman, Gapminder Foundation</h3>
<p>
Hans Rosling is professor of International Health at Karolinska Institutet, the medical
university in Stockholm, Sweden. When working as a young doctor in Mozambique
he discovered a previously unrecognized paralytic disease that his research team
named Konzo. His 20 years of research on global health concerned the character of
the links between economy and health in Africa, Asia and Latin America.
<br/><br/>
He has been adviser to WHO and UNICEF, co-founded Médecines sans Frontiers in
Sweden and started new courses and published a textbook on Global Health. He is a
member of the International Group of the Swedish Academy of Science and of the
Global Agenda Network of the World Economic Forum in Switzerland.
<br/><br/>
He co-founded Gapminder Foundation (www.gapminder.org) with son and daughter-in-law.
Gapminder promotes a fact based world view by converting the international
statistics into moving, interactive, understandable and enjoyable graphics. This was
first done by developing the Trendalyzer software that Google acquired in 2007.
Using animations of global trends, Hans Rosling lectures about past and
contemporary economic, social and environmental changes in the world and he
produces thematic videos using the same technique. His award-winning lectures on
global trends have been labeled “humorous, yet deadly serious” and many
audience realize their own world view is lagging many decades.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/stenbeck.jpg');">
<div class="pmarg">
<a href="#inline-stenbeck" class="jquery_popup-stenbeck"><div><span><strong>Cristina Stenbeck</strong><br/>Executive Chairman, Kinnevik</span></div></a>
<div id="inline-stenbeck" style="display:none">
<img src="speakerimg/stenbeck.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Cristina Stenbeck, Executive Chairman, Kinnevik</h3>
<p>
Cristina began her career within the Kinnevik group in 1997. Cristina became Deputy Chairman of
Investment AB Kinnevik in 2003 and Chairman in 2007. In addition to leading Kinnevik, Cristina is also
Chairman of Millicom, the mobile and cable company operating in Latin America and Africa and
Chairman of Zalando SE, the leading European fashion and accessories ecommerce company.
Cristina also chairs the Nomination committees of Qliro Group, Kinnevik, Millicom, Modern Times
Group, Tele2, and Zalando, which lead the recruitment of new Directors for each of these companies' Boards.
<br/><br/>
Cristina graduated with a B.Sc. from Georgetown University in Washington DC, USA.
<br/><br/>
Kinnevik is an entrepreneurial investment group focused on building digital consumer businesses in
four sectors: Communication, Ecommerce & Marketplaces, Entertainment, and Financial Services.
Kinnevik works in partnership with talented founders and managers to create, invest in and lead fast
growing digital businesses both in developed and developing countries.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/svantesson.jpg');">
<div class="pmarg">
<a href="#inline-svanteson" class="jquery_popup-svanteson"><div><span><strong>Sofia Svanteson</strong><br/>Founder, Ocean Observations</span></div></a>
<div id="inline-svanteson" style="display:none">
<img src="speakerimg/svantesson.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Sofia Svanteson, Founder & Design Strategist, Ocean Observations</h3>
<p>
Sofia is the founder of strategic design agency Ocean Observations and is
engaged in changing the world for the better with help of digitalization. She puts
emphasis on problem definition and helps organizations to develop new services
and business based on insights about citizens' needs and behaviors. Together
with her colleagues and clients she is currently engaged in matters such as
educating factory workers in Bangladesh, changing the future of healthcare, and
supporting the integration of foreign‐born in the Swedish labor market, all with
help from innovative digital services. In 2014, she was appointed by the then
European Commissioner Neelie Kroes as a role model for young women to
choose an education in technology. During 2013‐2015 she belonged to the expert
group advising the Swedish government’s Committee for digitisation. She has
spoken at the magazine Wired’s event on eHealth and she has organized
innovation training for companies in Japan.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/ulvaeus.jpg');">
<div class="pmarg">
<a href="#inline-ulvaeus" class="jquery_popup-ulvaeus"><div><span><strong>Björn Ulvaeus</strong><br/>Artist, Songwriter & Producer</span></div></a>
<div id="inline-ulvaeus" style="display:none">
<img src="speakerimg/ulvaeus.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Björn Ulvaeus, Artist, Songwriter & Producer (ABBA)</h3>
<p>
Member of ABBA. He wrote their songs together with Benny Andersson and in some cases
Stig Anderson. Cowriter of CHESS , MAMMA MIA! and Kristina från Duvemåla.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/vestberg.jpg');">
<div class="pmarg">
<a href="#inline-vestberg" class="jquery_popup-vestberg"><div><span><strong>Hans Vestberg</strong><br/>CEO, Ericsson</span></div></a>
<div id="inline-vestberg" style="display:none">
<img src="speakerimg/vestberg.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Hans Vestberg, CEO, Ericsson</h3>
<p>
President and CEO, Ericsson. Hans has held various positions in the Group since 1988, including Vice President
and Head of Market Unit Mexico and Head of Finance and Control in USA, Brazil and Chile. International advisor
to the Governor of Guangdong, China and cochairman of the RussianSwedish Business Council. Founding
member of the Broadband Commission for Digital Development, and heading the Commission’s task group on
the post2015 development agenda. Member of the Leadership Council of the United Nations Sustainable
Development Solutions Network.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/winnberg.jpg');">
<div class="pmarg">
<a href="#inline-winnberg" class="jquery_popup-winnberg"><div><span><strong>Pontus Winnberg</strong><br/>CEO, INGRID</span></div></a>
<div id="inline-winnberg" style="display:none">
<img src="speakerimg/winnberg.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Pontus Winnberg, CEO, INGRID</h3>
<p>
INGRID was created over numerous cups of pitchblack coffee at Mellqvist Kaffebar in Stockholm,
Sweden, where complaints of harsh winters soon turned into ideas of creating something much
grander than the sum of its parts. Joining forces to create a platform where music could thrive and
exist without the limitations of middle hands, artists such as Lykke Li, Miike Snow, Peter Bjorn and
John, created what would soon become known as Swedish music powerhouse INGRID.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/zarringhalam.jpg');">
<div class="pmarg">
<a href="#inline-zarringhalam" class="jquery_popup-zarringhalam"><div><span><strong>Nami Zarringhalam</strong><br/>Truecaller</span></div></a>
<div id="inline-zarringhalam" style="display:none">
<img src="speakerimg/zarringhalam.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Nami Zarringhalam, Co-founder & Chief Strategy Officer, Truecaller</h3>
<p>
Truecaller is a mobile app that let’s you see who’s calling and block unwanted<br/><br/>
Nami Zarringhalam is the Chief Strategy Officer and cofounder of Truecaller, a mobile
app that let’s you see who’s calling and block unwanted calls, and has more than 100 million users
globally. Nami oversees longterm partnerships and the development of product road maps to bolster
Truecaller’s growth in new and existing markets.
</p>
</div>
</div>
</div>
</div>
<!-- -->
<!-- -->
<div class="onespeaker case brilliant" style="background-image: url('speakerimg/zennstrom.jpg');">
<div class="pmarg">
<a href="#inline-zennstrom" class="jquery_popup-zennstrom"><div><span><strong>Niklas Zennström</strong><br/>Partner & CEO, Atomico</span></div></a>
<div id="inline-zennstrom" style="display:none">
<img src="speakerimg/zennstrom.jpg"/>
<div class="hundra">
<h3 style="margin: 30px 0;">Niklas Zennström, Partner & CEO, Atomico</h3>