-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConferenceTimetable.html
2563 lines (2538 loc) · 152 KB
/
ConferenceTimetable.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
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=FrontPage.Editor.Document>
<meta name=Generator content="Microsoft FrontPage 5.0">
<meta name=Originator content="Microsoft Word 10">
<title>CONFERENCE TIMETABLE</title>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="City"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="PlaceName"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="PlaceType"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="place"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="time"/>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
name="stockticker"/>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>Biometrics Matters Limited</o:Author>
<o:LastAuthor>Biometrics Matters Limited</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>1</o:TotalTime>
<o:Created>2010-02-02T08:24:00Z</o:Created>
<o:LastSaved>2010-02-02T08:24:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>1726</o:Words>
<o:Characters>9842</o:Characters>
<o:Company>BML</o:Company>
<o:Lines>82</o:Lines>
<o:Paragraphs>23</o:Paragraphs>
<o:CharactersWithSpaces>11545</o:CharactersWithSpaces>
<o:Version>10.6856</o:Version>
</o:DocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:UseFELayout/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
</w:WordDocument>
</xml><![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Batang;
panose-1:2 3 6 0 0 1 1 1 1 1;
mso-font-alt:¹ÙÅÁ;
mso-font-charset:129;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:-1342176593 1775729915 48 0 524447 0;}
@font-face
{font-family:PMingLiU;
panose-1:2 1 6 1 0 1 1 1 1 1;
mso-font-alt:·s²Ó©úÅé;
mso-font-charset:136;
mso-generic-font-family:auto;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:1 134742016 16 0 1048576 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-1610611985 1073750139 0 0 159 0;}
@font-face
{font-family:"GrotMacron Medium";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Times New Roman";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"GrotMacron Light";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Myriad Web";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"GrotMacron ExtraLt";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Myriad Web";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"GrotMacron Reg";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Times New Roman";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"GrotMacron ExtraLt Ita";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Myriad Web";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"Berlin Sans FB";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:Candara;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{font-family:"\@Batang";
panose-1:2 3 6 0 0 1 1 1 1 1;
mso-font-charset:129;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:-1342176593 1775729915 48 0 524447 0;}
@font-face
{font-family:"\@PMingLiU";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-charset:136;
mso-generic-font-family:auto;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:1 134742016 16 0 1048576 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:Calibri;
mso-fareast-font-family:PMingLiU;
mso-bidi-font-family:"Times New Roman";
mso-fareast-language:ZH-TW}
p.Heading, li.Heading, div.Heading
{mso-style-name:Heading;
margin-top:0cm;
margin-right:0cm;
margin-bottom:5.65pt;
margin-left:0cm;
line-height:12.0pt;
mso-pagination:widow-orphan;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"GrotMacron Medium";
mso-fareast-font-family:PMingLiU;
mso-bidi-font-family:"GrotMacron Medium";
color:black;
mso-ansi-language:EN-GB;
mso-fareast-language:ZH-TW;}
p.BasicParagraph, li.BasicParagraph, div.BasicParagraph
{mso-style-name:"\[Basic Paragraph\]";
margin:0cm;
margin-bottom:.0001pt;
line-height:12.0pt;
mso-pagination:widow-orphan;
mso-layout-grid-align:none;
text-autospace:none;
font-size:9.0pt;
font-family:"GrotMacron ExtraLt";
mso-fareast-font-family:PMingLiU;
mso-bidi-font-family:"GrotMacron ExtraLt";
color:black;
mso-ansi-language:EN-GB;
mso-fareast-language:ZH-TW;}
p.NoParagraphStyle, li.NoParagraphStyle, div.NoParagraphStyle
{mso-style-name:"\[No Paragraph Style\]";
mso-style-parent:"";
margin-bottom:.0001pt;
line-height:120%;
mso-pagination:widow-orphan;
mso-layout-grid-align:none;
text-autospace:none;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:PMingLiU;
color:black;
mso-ansi-language:EN-GB;
mso-fareast-language:ZH-TW; margin-left:0cm; margin-right:0cm; margin-top:0cm}
p.timetablecontenttitle, li.timetablecontenttitle, div.timetablecontenttitle
{mso-style-name:"timetable content title";
mso-style-parent:"\[No Paragraph Style\]";
margin:0cm;
margin-bottom:.0001pt;
line-height:12.0pt;
mso-pagination:widow-orphan;
mso-layout-grid-align:none;
text-autospace:none;
font-size:9.0pt;
font-family:"GrotMacron ExtraLt Ita";
mso-fareast-font-family:PMingLiU;
mso-bidi-font-family:"GrotMacron ExtraLt Ita";
color:black;
mso-ansi-language:EN-GB;
mso-fareast-language:ZH-TW;}
@page Section1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;
mso-header-margin:35.4pt;
mso-footer-margin:35.4pt;
mso-paper-source:0;}
div.Section1
{page:Section1;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman"}
</style>
<![endif]-->
</head>
<body lang=EN-US style='tab-interval:36.0pt'>
<div class=Section1>
<p class=Heading style='mso-hyphenate:none'>
<span style="font-size: 16pt; text-transform: uppercase; font-weight: 700" lang="EN-GB">Conference Timetable</span></p>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
style='margin-left:4.0pt;border-collapse:collapse;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;height:3.0pt'>
<td width=329 colspan=2 valign=top style='width:246.6pt;border:solid windowtext 1.0pt;
mso-border-alt:solid windowtext .75pt;background:black;mso-shading:windowtext;
mso-pattern:solid black;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph align=center style='text-align:center'><span
lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg";
color:white'>SUNDAY 29<sup>TH</sup> NOV</span><span lang=EN-GB
style='color:white'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.0pt'>
<td width=36 valign=top style='width:26.95pt;border:solid windowtext 1.0pt;
border-top:none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;mso-pattern:
solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph><st1:time Minute="0" Hour="16"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>16:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 valign=top style='width:219.65pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;
mso-pattern:solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Conference
Registration opens</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.0pt'>
<td width=36 valign=top style='width:26.95pt;border:solid windowtext 1.0pt;
border-top:none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;mso-pattern:
solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph><st1:time Minute="0" Hour="18"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>18:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 valign=top style='width:219.65pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;
mso-pattern:solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Welcome
Reception<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes;height:3.0pt'>
<td width=36 valign=top style='width:26.95pt;border:solid windowtext 1.0pt;
border-top:none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;mso-pattern:
solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=NoParagraphStyle style='line-height:normal;mso-vertical-align-alt:
auto'><span style='font-family:"GrotMacron Medium";color:windowtext;
mso-ansi-language:EN-US'><o:p> </o:p></span></p>
</td>
<td width=293 valign=top style='width:219.65pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#004A6D;mso-shading:windowtext;
mso-pattern:solid #004A6D;padding:4.0pt 4.0pt 4.0pt 4.0pt;height:3.0pt'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Dinner
(own arrangement)</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
</table>
<p class=Heading style='line-height:normal;mso-hyphenate:none'><span
lang=EN-GB><o:p> </o:p></span></p>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
style='margin-left:4.0pt;border-collapse:collapse;mso-padding-alt:0cm 0cm 0cm 0cm' height="2062">
<tr style='mso-yfti-irow:0;height:3.0pt'>
<td width=329 colspan=3 valign=top style='width:246.6pt;border:1.0pt solid windowtext;
mso-border-alt:solid windowtext .75pt;background:black;mso-shading:windowtext;
mso-pattern:solid black;padding:4.0pt;height:29'>
<p class=BasicParagraph align=center style='text-align:center'><span
lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg";
color:white'>MONDAY, 30<sup>TH</sup> NOV</span><span lang=EN-GB
style='color:white'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#F18E00;mso-shading:windowtext;mso-pattern:
solid #F18E00;padding:4.0pt;height:45'>
<p class=BasicParagraph><st1:time Minute="50" Hour="8"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>8:50</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#F18E00;mso-shading:windowtext;
mso-pattern:solid #F18E00;padding:4.0pt;height:45'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Presidential
Opening (Swifts): </span><span lang=EN-GB style='font-family:"GrotMacron Light";
mso-bidi-font-family:"GrotMacron Light"'><o:p></o:p></span></p>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Graham
Hepworth, </span><st1:place><st1:PlaceType><span lang=EN-GB style='font-family:
"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>University</span></st1:PlaceType><span
lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>
of </span><st1:PlaceName><span lang=EN-GB style='font-family:"GrotMacron Reg";
mso-bidi-font-family:"GrotMacron Reg"'>Melbourne</span></st1:PlaceName></st1:place><span
lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#E4342B;mso-shading:windowtext;mso-pattern:
solid #E4342B;padding:4.0pt;height:78'>
<p class=BasicParagraph><st1:time Minute="0" Hour="9"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>9:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#E4342B;mso-shading:windowtext;
mso-pattern:solid #E4342B;padding:4.0pt;height:78'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Keynote
Address (Swifts):</span></p>
<p class=BasicParagraph><span style='mso-bidi-font-weight:normal'>
<a href="talks2009/01_Monday_K_Swifts_MartinBland/MartinBland_LeftHandedDieYoung.ppt">
Martin Bland,
University of York</a></span></span></p>
<p class=BasicParagraph>
<span
style='mso-spacerun:yes; mso-bidi-font-weight:normal' lang="EN-GB">
<a href="talks2009/01_Monday_K_Swifts_MartinBland/MartinBland_LeftHandedDieYoung.ppt">
Do left-handed people die young? </a></span></p>
<p class=BasicParagraph>
<span lang=EN-GB style='font-family:"GrotMacron Light";
mso-bidi-font-family:"GrotMacron Light"'>Chair: Graham Hepworth</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;mso-pattern:
solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph><st1:time Minute="50" Hour="9"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>9:50</span></st1:time><span lang=EN-GB style='font-size:
7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'> -</span><st1:time
Minute="30" Hour="10"><span lang=EN-GB style='font-size:7.0pt;font-family:
"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>10:30</span></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 1 Swifts: <o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Medical<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: John Field</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 1 Boardroom: Ecological Modelling<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: Teresa Neeman</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;height:88.5pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:123'>
<p class=BasicParagraph><st1:time Minute="50" Hour="9"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>9:50</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:123'>
<a href="talks2009/02_Monday_1_Swifts_Medical/Reyes-Tanaka.pdf">
<span style="font-size: 9pt">Estimates for the mutation rates of spoligotypes and VNTR loci of tuberculosis<br>
<p class=BasicParagraph style='mso-hyphenate:none'>
Josephine Reyes, University of NSW</span></p></a></td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:123'>
<a href="talks2009/03_Monday_1_Board_Ecological/charis-burridge-Biometrics-Taupo-2009.ppt">
<span style="font-size: 9pt">Spatial modelling of prawn abundance from large-scale marine surveys using penalised
regression splines<br><p class=BasicParagraph style='mso-hyphenate:none'>
Charis Burridge, CSIRO Mathematics, Informatics and Statistics</span></p>
</a></td>
</tr>
<tr style='mso-yfti-irow:5;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:125'>
<p class=BasicParagraph><st1:time Minute="10" Hour="10"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>10:10</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:125'>
<a href="talks2009/02_Monday_1_Swifts_Medical/MaryBarnesPersonalisedMedicine_Nov2009.pps">
<span style="font-size: 9pt">Personalised medicine: endovascular aneurysm repair risk assessment model using
preoperative variables<br><p class=BasicParagraph style='mso-hyphenate:none'>
Mary Barnes, CSIRO Mathematics, Informatics and Statistics</a></td></p></span>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:125'>
<a href="talks2009/03_Monday_1_Board_Ecological/Wang-2009-Biometrics.pdf">
<span style="font-size: 9pt">Rank regression for analyzing environmental data<br><p class=BasicParagraph style='mso-hyphenate:none'>
You-Gan Wang, CSIRO Mathematics, Informatics and Statistics </p></a></td>
</tr>
<tr style='mso-yfti-irow:6;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;mso-pattern:
solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph><st1:time Minute="30" Hour="10"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>10:30</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;
mso-pattern:solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Morning Tea (30 minutes)</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;mso-pattern:
solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph><st1:time Minute="0" Hour="11"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>11:00</span></st1:time><span lang=EN-GB style='font-size:
7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'> -</span><st1:time
Minute="20" Hour="12"><span lang=EN-GB style='font-size:7.0pt;font-family:
"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>12:20</span></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 2 Swifts: Modelling<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: Andrew McLachlan</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 2 Boardroom: <o:p></o:p></span></p>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Environmental
& Methods<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: </span><st1:place><st1:PlaceName><span lang=EN-GB
style='font-family:"GrotMacron Light";mso-bidi-font-family:"GrotMacron Light"'>Zaneta</span></st1:PlaceName><span
lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:"GrotMacron Light"'>
</span><st1:PlaceType><span lang=EN-GB style='font-family:"GrotMacron Light";
mso-bidi-font-family:"GrotMacron Light"'>Park</span></st1:PlaceType></st1:place><span
lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:93'>
<p class=BasicParagraph><st1:time Minute="0" Hour="11"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>11:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:93'>
<a href="talks2009/04_Monday_2_Swifts_Modelling/DavidBairdQuantileRegression.ppt">
<span style="font-size: 9pt">Introduction to Quantile regression<br>
David Baird, VSN NZ Ltd</span></p>
</a>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB><o:p> </o:p></span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:93'>
<a href="talks2009/05_Monday_2_Board_Ecology/RichardArnold_CaptureRecapture.pdf">
<span style="font-size: 9pt">Capture
recapture estimation using finite mixtures of arbitrary dimension<br><p class=BasicParagraph style='mso-hyphenate:none'>
Richard Arnold, Victoria University</span></a></td></p>
</tr>
<tr style='mso-yfti-irow:9;height:3.0pt'>
<td width=329 colspan=3 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:246.6pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:black;mso-shading:windowtext;mso-pattern:
solid black;padding:4.0pt;height:28'>
<p class=BasicParagraph align=center style='text-align:center'><span
lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg";
color:white'>MONDAY, 30<sup>TH</sup> NOV</span><span lang=EN-GB
style='color:white'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;height:79.95pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:109'>
<p class=BasicParagraph><st1:time Minute="20" Hour="11"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>11:20</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:109'>
<p class=timetablecontenttitle style='mso-hyphenate:none'>
<a href="talks2009/04_Monday_2_Swifts_Modelling/MichaelGraham_SASandR.ppt">How
SAS and R integrate<br><p class=BasicParagraph style='mso-hyphenate:none'>Michael
Graham, SAS</a></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:109'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/05_Monday_2_Board_Ecology/BobForester_Wallabies.pps">The
effect of a GnRH vaccine, GonaCon on the growth of juvenile tammar wallabies<br><p class=BasicParagraph style='mso-hyphenate:none'>Robert
Forrester, ANU</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;height:79.6pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:109'>
<p class=BasicParagraph><st1:time Minute="40" Hour="11"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>11:40</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:109'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/04_Monday_2_Swifts_Modelling/Maryann%20pirie%20taupo%202009.pps">
A comparison of matrices of time series, with application in
dendroclimatology<br><p class=BasicParagraph style='mso-hyphenate:none'>Maryanne
Pirie, University of Auckland</span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:109'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/05_Monday_2_Board_Ecology/RossDarnell_Species.pdf">Model
based grouping of species across environmental gradients<br><p class=BasicParagraph style='mso-hyphenate:none'>Ross
Darnell, CSIRO Mathematics, Informatics and Statistics</a></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;height:66.6pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:95'>
<p class=BasicParagraph><st1:time Minute="0" Hour="12"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>12:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:95'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB><span
style='mso-spacerun:yes'>
<a href="talks2009/04_Monday_2_Swifts_Modelling/RodBall_A-virtual-institute-of-statistical-genetics.pdf">
A Virtual Institute of Statistical Genetics<br><p class=BasicParagraph style='mso-hyphenate:none'>Rod Ball, Scion (NZ Forest Research Institute Limited)</span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:95'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/05_Monday_2_Board_Ecology/AustinaClarkChiSquare.ppt">
The use of the chi-square test when observations are dependent<br><p class=BasicParagraph style='mso-hyphenate:none'>Austina
Clark, University of Otago</a></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;height:15.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;mso-pattern:
solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph><st1:time Minute="20" Hour="12"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>12:20</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;
mso-pattern:solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Lunch (1 hour 10 minutes)</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;height:49.9pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#44A12A;mso-shading:windowtext;mso-pattern:
solid #44A12A;padding:4.0pt;height:79'>
<p class=BasicParagraph><st1:time Minute="30" Hour="13"><b style='mso-bidi-font-weight:
normal'><span lang=EN-GB style='font-size:7.0pt;font-family:"GrotMacron Reg";
mso-bidi-font-family:"GrotMacron Reg"'>13:30</span></b></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#44A12A;mso-shading:windowtext;
mso-pattern:solid #44A12A;padding:4.0pt;height:79'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>Invited
Speaker (Swifts): <o:p></o:p></span></p>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang=EN-GB
style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>
<a href="talks2009/06_Monday_I_Swifts_RossIhaka/RossIhaka_EfficientR.pdf">Ross
Ihaka, University of Auckland<br>Writing Efficient Programs in R and
Beyond</a></span></p>
<p class=BasicParagraph><span lang=EN-GB style='font-family:"GrotMacron Light";
mso-bidi-font-family:"GrotMacron Light"'>Chair: Renate Meyer</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;height:39.4pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;mso-pattern:
solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph><st1:time Minute="10" Hour="14"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>14:10</span></st1:time><span lang=EN-GB style='font-size:
7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'> -</span><st1:time
Minute="10" Hour="15"><span lang=EN-GB style='font-size:7.0pt;font-family:
"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>15:10</span></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 3 Swifts: <o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Variance<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: Geoff Jones</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 3 Boardroom: <o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Genetics<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: John Koolaard</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:16;height:66.6pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:93'>
<p class=BasicParagraph><st1:time Minute="10" Hour="14"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>14:10</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:93'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/07_Monday_3_Swifts_Variance/RachelFewsterSystematicVariance.pps">
Variance
estimation for systematic designs in spatial surveys<br><p class=BasicParagraph style='mso-hyphenate:none'>Rachel
Fewster, University of Auckland</a></span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:93'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/08_Monday_3_Board_Genetics/genePattern-IBS.pptx">Developing
modules in genepattern for gene expression analysis<br><p class=BasicParagraph style='mso-hyphenate:none'>Marcus
Davy, Plant and Food Research</span></p></a>
</td>
</tr>
<tr style='mso-yfti-irow:17;height:92.7pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:124'>
<p class=BasicParagraph><st1:time Minute="30" Hour="14"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>14:30</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:124'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/07_Monday_3_Swifts_Variance/Mohebbi_Mohammadreza.pptx">Variance
components analysis for balanced and unbalanced data in reliability of gait
measurement<br><p class=BasicParagraph style='mso-hyphenate:none'>Mohammadreza
Mohebbi, Monash University</span></p></a>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:124'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/08_Monday_3_Board_Genetics/JulianTaylor_QTLs.ppt">High
dimensional QTL analysis within complex linear mixed models<br><p class=BasicParagraph style='mso-hyphenate:none'>Julian
Taylor, CSIRO Mathematics, Informatics and Statistics<o:p></o:p></span></p></a>
</td>
</tr>
<tr style='mso-yfti-irow:18;height:56.9pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:77'>
<p class=BasicParagraph><st1:time Minute="50" Hour="14"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>14:50</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:77'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/07_Monday_3_Swifts_Variance/JinYoonModernizing%20AMOVA%20using%20ANOVA.ppt">
Modernizing
AMOVA using ANOVA<br><p class=BasicParagraph style='mso-hyphenate:none'>Hwan-Jin
Yoon, ANU</p></a>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:77'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/08_Monday_3_Board_Genetics/ZanetaPark%20Correlation%20of%20transcriptomic%20and%20phenotypic%20data%20in%20dairy%20cows%20Nov%202009v1.pptx">
Correlation
of transcriptomic and phenotypic data in dairy cows<br><p class=BasicParagraph style='mso-hyphenate:none'>Zaneta Park,
AgResearch</span></p></a>
</td>
</tr>
<tr style='mso-yfti-irow:19;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;mso-pattern:
solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph><st1:time Minute="10" Hour="15"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>15:10</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=293 colspan=2 valign=top style='width:219.65pt;border-top:medium none;
border-left:medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#FFEC00;mso-shading:windowtext;
mso-pattern:solid #FFEC00;padding:4.0pt;height:28'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Afternoon Tea (30 minutes)</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:20;height:3.0pt'>
<td width=329 colspan=3 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:246.6pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:black;mso-shading:windowtext;mso-pattern:
solid black;padding:4.0pt;height:28'>
<p class=BasicParagraph align=center style='text-align:center'><span
lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg";
color:white'>MONDAY, 30<sup>TH</sup> NOV</span><span lang=EN-GB
style='color:white'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:21;height:3.0pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;mso-pattern:
solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph><st1:time Minute="40" Hour="15"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>15:40</span></st1:time><span lang=EN-GB style='font-size:
7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'> -</span><st1:time
Minute="0" Hour="17"><span lang=EN-GB style='font-size:7.0pt;font-family:
"GrotMacron Reg";mso-bidi-font-family:"GrotMacron Reg"'>17:00</span></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 4 Swifts: <o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Modelling<br>Chair: Mario DAntuono</span></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;background:#8AC2E6;mso-shading:windowtext;
mso-pattern:solid #8AC2E6;padding:4.0pt;height:62'>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Session 4 Boardroom: <o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>Ecology<o:p></o:p></span></p>
<p class=BasicParagraph align=center style='text-align:center;mso-hyphenate:
none'><span lang=EN-GB style='font-family:"GrotMacron Light";mso-bidi-font-family:
"GrotMacron Light"'>Chair: Rachel Fewster</span><span lang=EN-GB><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:22;height:68.2pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:92'>
<p class=BasicParagraph><st1:time Minute="40" Hour="15"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>15:40</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:92'>
<p class=timetablecontenttitle style='mso-hyphenate:none'>
<a href="talks2009/09_Monday_4_Swifts_Modelling/1%20Simon%20Day_Non-Inferiority%20Margins%20in%20Clinical%20Trials.pps">
Non-inferiority
margins in clinical trials<br><p class=BasicParagraph style='mso-hyphenate:none'>Simon Day,
Roche Products Ltd. </a></p>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:92'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>Visualising
model selection criteria for presence and absence data in ecology<br><p class=BasicParagraph style='mso-hyphenate:none'>Samuel Mueller, University of Sydney</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:23;height:83.15pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:111'>
<p class=BasicParagraph><st1:time Minute="0" Hour="16"><span lang=EN-GB
style='font-size:7.0pt;font-family:"GrotMacron Reg";mso-bidi-font-family:
"GrotMacron Reg"'>16:00</span></st1:time><span lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:111'>
<p class=timetablecontenttitle style='mso-hyphenate:none'><span lang=EN-GB>
<a href="talks2009/09_Monday_4_Swifts_Modelling/Andrew%20McLachlan%20-%20Data%20Processing%20Using%20Excel%20with%20R.ppsx">
Data
processing using Excel with R<br><p class=BasicParagraph style='mso-hyphenate:none'>Andrew McLachlan, Plant and Food Research, Lincoln</span></p></a>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:111'>
<p class=timetablecontenttitle style='mso-hyphenate:none'>
<a href="talks2009/10_Monday_4_Board_Ecology/RossDarnell_EnvironmentIndices.pdf">
<span lang="en-gb">Estimating
weights for constructing composite environmental indices<br><p class=BasicParagraph style='mso-hyphenate:none'>Ross
Darnell, CSIRO Mathematics, Informatics and Statistics</p></td>
</tr>
<tr style='mso-yfti-irow:24;height:90.75pt'>
<td width=36 valign=top style='border-left:1.0pt solid windowtext; border-right:1.0pt solid windowtext; border-bottom:1.0pt solid windowtext; width:26.95pt;border-top:medium none;mso-border-top-alt:solid windowtext .75pt;mso-border-alt:
solid windowtext .75pt;padding:4.0pt;height:125'>
<p class=BasicParagraph style='mso-hyphenate:none'><st1:time Minute="20"
Hour="16"><span lang=EN-GB style='font-size:7.0pt;font-family:"GrotMacron Reg";
mso-bidi-font-family:"GrotMacron Reg"'>16:20</span></st1:time><span
lang=EN-GB><o:p></o:p></span></p>
</td>
<td width=146 valign=top style='width:109.8pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;
mso-border-alt:solid windowtext .75pt;padding:4.0pt;
height:125'>
<p class=BasicParagraph style='mso-hyphenate:none'><span lang="en-gb">
<a href="talks2009/09_Monday_4_Swifts_Modelling/3%20GeoffJones_BDD.ppsx">Investigating
covariate effects on BDD infection with longitudinal data<br><p class=BasicParagraph style='mso-hyphenate:none'>Geoffrey
Jones, Massey University</span></p></a>
</td>
<td width=146 valign=top style='width:109.85pt;border-top:medium none;border-left:
medium none;border-bottom:1.0pt solid windowtext;border-right:1.0pt solid windowtext;
mso-border-top-alt:solid windowtext .75pt;mso-border-left-alt:solid windowtext .75pt;