-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
449 lines (413 loc) · 18 KB
/
index.html
File metadata and controls
449 lines (413 loc) · 18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>auIGF 2025 Program — Day 1</title>
<style>
:root{
--ink:#0e1b2a;
--muted:#4b5b6a;
--bg:#ffffff;
--panel:#0f3b4a; /* deep teal for time column + header bar */
--panel-2:#124d60; /* lighter teal for alternation */
--key:#f6c828; /* golden highlight (registration) */
--rule:#d9e2ec; /* light grid lines */
--brand:#0f3b4a;
}
@media (prefers-color-scheme: dark){
:root{
--ink:#203040;
--muted:#9fb0c1;
--rule:#203040;
}
}
html,body{height:100%}
body{
margin:0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
color:var(--ink);
background:var(--bg);
line-height:1.5;
}
.wrap{
max-width: 920px;
margin: 24px auto 64px;
padding: 0 20px;
}
/* Title */
.title{
font-size: clamp(28px, 4.2vw, 48px);
text-align:center;
font-weight: 800;
color: var(--brand);
letter-spacing: .3px;
margin: 8px 0 8px;
}
.subtitle{
text-align:center;
color: var(--muted);
font-size: 0.95rem;
margin-top: 4px;
}
.dayhead{
font-size: clamp(22px, 3vw, 32px);
font-weight: 800;
margin: 28px 0 14px;
color: var(--ink);
}
/* Table */
.program{
width:100%;
border-collapse: separate;
border-spacing:0;
overflow:hidden;
border: 1px solid var(--rule);
border-radius: 14px;
box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.program thead th{
text-transform: none;
font-size: 1.05rem;
letter-spacing: .2px;
padding: 14px 16px;
color: #fff;
background: var(--panel);
border-bottom: 2px solid var(--rule);
text-align: left;
}
.program thead th:nth-child(1){ width: 190px; }
.program thead th:nth-child(2){ width: auto; }
.slot{
vertical-align: top;
}
.time{
background: var(--panel);
color: #fff;
font-weight: 700;
width: 190px;
padding: 14px 16px;
border-right: 1px solid rgba(255,255,255,.1);
}
/* alternating tone for time column */
tr.alt .time{ background: var(--panel-2); }
.desc{
background: #fff;
padding: 14px 18px;
border-left: none;
}
.title-sm{
font-weight: 800;
font-size: 1.05rem;
color: #0a2b39;
}
.lead{
margin-top: 6px;
}
.sponsor{
margin-top: 8px;
font-weight: 700;
color: #0f3b4a;
font-size: .95rem;
}
.muted{
color: var(--muted);
}
/* highlight row (e.g., Registration, Lunch, Tea) */
.highlight .desc{ background: var(--key); }
.highlight .title-sm{ color: #111; }
.break .desc{ background: #f4f7fb; }
/* lists */
.desc ul{ margin: 6px 0 0 1.1rem; }
.desc li{ margin: .15rem 0; }
/* grid lines */
.program tbody tr + tr td{ border-top: 1px solid var(--rule); }
.program tbody td.desc{ border-left: 1px solid var(--rule); }
/* Print: single-page friendly */
@media print{
body{ background:#fff; }
.wrap{ max-width: 100%; margin:0; padding:0 6mm; }
.title{ margin-top: 2mm; }
.program{ page-break-inside: avoid; box-shadow:none; }
.desc, .time, .program thead th{ -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
</style>
</head>
<body>
<main class="wrap">
<h1 class="title">auIGF 2025 Program</h1>
<p class="subtitle">All times below are Adelaide time, ACST (UTC+9:30).<br>
Speakers are confirmed at the time of publishing, but may be subject to change.</p>
<h2 class="dayhead">Day 1: Tuesday, 23 September 2025</h2>
<table class="program" role="table" aria-label="auIGF 2025 Program Day 1">
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Program Description</th>
</tr>
</thead>
<tbody>
<tr class="slot highlight">
<td class="time">9:00 – 10:00AM</td>
<td class="desc">
<div class="title-sm">Registration</div>
<p class="lead">Collect your badge and enjoy some morning tea while meeting fellow participants.</p>
</td>
</tr>
<tr class="slot alt">
<td class="time">10:00 – 11:30AM</td>
<td class="desc">
<div class="title-sm">Opening Plenary</div>
<p class="lead">A Welcome to Country and remarks from the Chair lead into a keynote speech from international Internet Governance expert and ICANN Board Member Chris Buckridge.</p>
<p>A multi-stakeholder panel will then unpack the event’s big themes and invite audience reflection. The session will help to set Australia’s Internet governance agenda for 2025.</p>
<p><strong>Panellists:</strong></p>
<ul>
<li>Michael Brown MP – South Australia’s Assistant Minister for Artificial Intelligence and the Digital Economy</li>
<li>Johanna Weaver – Tech Policy Design Institute (TPDi)</li>
<li>Christine Runnegar – Internet Society</li>
<li>Rohan Sachdeva – youth voice</li>
</ul>
<p><strong>MC:</strong></p>
<ul>
<li>Jordan Carter – auDA</li>
</ul>
</td>
</tr>
<tr class="slot">
<td class="time">11:40AM – 12:40PM</td>
<td class="desc">
<div class="title-sm">The Commonwealth in Conversation: WSIS+20 Reflections</div>
<p>Australia's negotiating team will take stock of two decades of the WSIS framework and highlight priorities for Australia as the WSIS+20 review approaches. In this dynamic session, expect insights into negotiation dynamics and to have your questions answered.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>William Lee – Department of Infrastructure, Transport, Regional Development, Communications, Sport and the Arts</li>
<li>Cheryl Langdon-Orr – Internet Australia</li>
</ul>
<p class="sponsor">Sponsored by the Department of Infrastructure, Transport, Regional Development, Communications, Sport and the Arts</p>
</td>
</tr>
<tr class="slot alt break">
<td class="time">12:40 – 1:40PM</td>
<td class="desc">
<div class="title-sm">Lunch Break</div>
<p>Lunchtime session available for those who wish to grab some lunch and listen in.</p>
</td>
</tr>
<tr class="slot">
<td class="time">12:50 – 1:20PM</td>
<td class="desc">
<div class="title-sm">Lunch Session</div>
<p><strong>Sovereignty in the Digital Age: Reclaiming Identity, Governance, and Power</strong></p>
<p>This session explores digital sovereignty, and how uniting intent, consent, and governance in digital infrastructure can reclaim power from extractive models and seed a plural, regenerative digital future for all society.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Simon O'Toole – Alliance ICT, Leap Foundation & Dreaming Machines</li>
<li>Alexar Pendashteh – Linux Victoria & Goodness Triangle</li>
</ul>
</td>
</tr>
<tr class="slot alt">
<td class="time">1:40 – 2:40PM</td>
<td class="desc">
<div class="title-sm">No One Left Behind – Digital Inclusion & AI Equity</div>
<p>Everyone in Australia deserves the chance to succeed in today’s digital society. With 6.6 million Australians lacking capacity to properly participate in online life, this panel will explore the imperative for national action on digital inclusion, covering key examples of strategy, leadership, and opportunities for policy to help deliver broader benefit.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Dane Glerum – Good Things Australia</li>
<li>Dr Kim Osman – Digital Media Research Centre, Queensland University of Technology</li>
<li>Heather Rea – Telstra</li>
<li>Nicole Rossini – NSW Telco Authority</li>
</ul>
<p><strong>Moderator:</strong></p>
<ul>
<li>Tim Marshall – Australian Digital Inclusion Alliance</li>
</ul>
<p class="sponsor">Sponsored by ICANN</p>
</td>
</tr>
<tr class="slot">
<td class="time">2:50 – 3:50PM</td>
<td class="desc">
<div class="title-sm">Digital Platform Ownership – Diversity, Resilience & Trust</div>
<p>New data reveal Australia’s Internet supply chain is dominated by key global tech giants. Panellists examine what this concentration means for media diversity, democratic resilience and public trust, and ask whether the firms are now both “too big to fail” and “too big to govern”.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Cameron McTernan – The University of South Australia</li>
<li>Terry Flew – The University of Sydney</li>
<li>Mr Ram Mohan – Identity Digital</li>
</ul>
<p><strong>Moderator:</strong></p>
<ul>
<li>Victoria Fielding – The University of Adelaide</li>
</ul>
<p class="sponsor">Sponsored by Identity Digital</p>
</td>
</tr>
<tr class="slot alt break">
<td class="time">3:50 – 4:15PM</td>
<td class="desc">
<div class="title-sm">Afternoon Tea</div>
</td>
</tr>
<tr class="slot">
<td class="time">4:15 – 5:15PM</td>
<td class="desc">
<div class="title-sm">Multi‑stakeholder Ways to Improve Trust in Australia’s Digital Ecosystem</div>
<p>Co-regulation in the communications sector is under pressure. Consumers criticise it, and the trend is towards more direct regulation. Could multi-stakeholder methods help solve problems and reduce the need for regulation? Could lessons in this sector be applied more broadly on Internet issues?</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Luke Coleman – Australian Telecommunications Alliance</li>
<li>Carol Bennett – Australian Communications Consumer Action Network (ACCAN)</li>
<li>Sam Grunhard – Department of Infrastructure, Transport, Regional Development, Communications, Sport and the Arts</li>
<li>Bruce Tonkin – auDA</li>
<li>Zoe Hawkins – Tech Policy Design Institute (TPDi)</li>
</ul>
<p><strong>Moderator:</strong></p>
<ul>
<li>Narelle Clark – Internet Association of Australia (IAA)</li>
</ul>
<p class="sponsor">Sponsored by the Department of Infrastructure, Transport, Regional Development, Communications, Sport and the Arts</p>
</td>
</tr>
<tr class="slot alt break">
<td class="time">5:15 – 6:30PM</td>
<td class="desc">
<div class="title-sm">Networking Event <span class="muted">sponsored by Verisign</span></div>
<p>Networking drinks will be served at the venue immediately after the final session concludes.</p>
</td>
</tr>
</tbody>
</table>
<br>
<hr>
<h2 class="dayhead">Day 2: Wednesday, 24 September 2025</h2>
<table class="program" role="table" aria-label="auIGF 2025 Program Day 2">
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Program Description</th>
</tr>
</thead>
<tbody>
<tr class="slot highlight">
<td class="time">9:00 – 10:00AM</td>
<td class="desc">
<div class="title-sm">Town Hall – Position Paper</div>
<p>This open forum is an opportunity for sharing views and feedback on the draft auIGF 2025 position papers circulated in advance of the auIGF. Attendees can test general views of the participants as a whole about whether the direction set out is agreeable to most.</p>
<p><strong>Papers under discussion:</strong></p>
<ul>
<li>The proposal to explore and develop a <a href="https://auigf.au/position-paper">Social Contract for Digital Wellbeing in Australia</a> (new paper for 2025)</li>
<li>An update to our <a href="https://auigf.au/position-paper">2024 paper</a> for the WSIS+20 review</li>
</ul>
<p>This session will be led and moderated by auIGF Multi-Stakeholder Steering Committee members.</p>
</td>
</tr>
<tr class="slot alt break">
<td class="time">10:00 – 10:30AM</td>
<td class="desc">
<div class="title-sm">Morning Tea</div>
</td>
</tr>
<tr class="slot">
<td class="time">10:30 – 11:30AM</td>
<td class="desc">
<div class="title-sm">New Playgrounds, New Rules: The Future of Child Digital Rights & Skills</div>
<p>An interactive questionnaire, panel and Q&A examining how children build digital resilience amid debates regarding best practice for child online protection.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Jay Chew – STEM educator</li>
<li>Noelle de Guzman – Internet Society</li>
<li>Michael Des Tombe – Netsafe New Zealand</li>
<li>Rury Demsey – International Telecommunication Union, Asia-Pacific</li>
<li>Anna Christina D’Addio – UNESCO Global Education Monitoring Report</li>
</ul>
<p><strong>Moderators:</strong></p>
<ul>
<li>Abdul Matheen – Project You</li>
<li>Ellen Dixon – Internet Society Youth Ambassador</li>
</ul>
</td>
</tr>
<tr class="slot alt">
<td class="time">11:40AM – 12:40PM</td>
<td class="desc">
<div class="title-sm">How might approaches to digital inequities from the First Peoples of Australia and indigenous communities enhance global Internet governance?</div>
<p>This panel explores lived experiences in addressing digital inequities and the impact that community-led responses can have.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Ana McAllister – InternetNZ</li>
<li>Susan Beetson – auIGF First Peoples Internet Governance and Policy Fellowship Mentor</li>
<li>Simon O'Toole – Alliance ICT, Leap Foundation & Dreaming Machines</li>
<li>Andrew Molivurae – TRBR Vanuatu</li>
</ul>
<p><strong>Moderator:</strong></p>
<ul>
<li>Rose Jamieson – InternetNZ</li>
</ul>
</td>
</tr>
<tr class="slot break">
<td class="time">12:40 – 1:45PM</td>
<td class="desc">
<div class="title-sm">Lunch</div>
</td>
</tr>
<tr class="slot alt">
<td class="time">12:50 – 1:30PM</td>
<td class="desc">
<div class="title-sm">Lunch Session</div>
<p><strong>.au Licensing Rules Review: Policy Advisory Panel open session</strong></p>
<p>The Chair of auDA’s external Policy Advisory Panel, Matt Healy, together with two members of the Panel, will host an open lunchtime session to provide an update on the <a href="https://www.auda.org.au/public-impact/have-your-say/policy-panels/au-licensing-rules-review-2025/">.au Licensing Rules Review 2025</a>.</p>
<p>This session is available to on-site attendees only.</p>
</td>
</tr>
<tr class="slot">
<td class="time">1:45 – 2:45PM</td>
<td class="desc">
<div class="title-sm">Fostering Trust Online for Australians – The Human Element</div>
<p>Drawing on new findings from <a href="https://www.auda.org.au/news-insights/research-reports/digital-lives-of-australians/">auDA’s Digital Lives of Australians 2025 research</a>, this panel explores where trust gaps exist in areas like cybersecurity and AI.</p>
<p><strong>Speakers:</strong></p>
<ul>
<li>Rachael Falk – Ashurst Risk Advisory</li>
<li>Lizzie O’Shea – Digital Rights Watch</li>
<li>Rebecca Papillo – auDA</li>
</ul>
<p><strong>Moderator:</strong></p>
<ul>
<li>Sylvia Cadena – World Wide Web Consortium (W3C)</li>
</ul>
</td>
</tr>
<tr class="slot alt break">
<td class="time">2:45 – 3:15PM</td>
<td class="desc">
<div class="title-sm">Afternoon Tea</div>
</td>
</tr>
<tr class="slot">
<td class="time">3:15 – 4:45PM</td>
<td class="desc">
<div class="title-sm">Closing Plenary</div>
<p>The 2025 Closing Plenary for auIGF will have three components:</p>
<ul>
<li>Testing the community consensus on the Position Papers</li>
<li>Rapporteurs’ readouts of the proceedings</li>
<li>A brief panel reflecting on the event and next steps</li>
</ul>
<p><strong>Panellists:</strong></p>
<ul>
<li>Patrick Kane – Verisign</li>
<li>Lizzie O’Shea – Digital Rights Watch</li>
<li>Ian Sheldon – Department of Infrastructure, Transport, Regional Development, Communications, Sport and the Arts</li>
<li>Cameron McTernan – The University of South Australia</li>
</ul>
<p>The closing remarks by auIGF Chair Donna Austin will include a call to action and an update on next steps for the auIGF and its community.</p>
<p class="sponsor">Sponsored by Verisign</p>
</td>
</tr>
</tbody>
</table>
<br>
</main>
</body>
</html>