-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRU2017-F.html
775 lines (765 loc) · 27.2 KB
/
LRU2017-F.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Liga de Rugby Universitário de 2017 - Feminino</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #FFFFFF;
margin: 0;
padding: 0;
color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
text-align: center;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
color:#414958;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: none;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
/* ~~ This is the layout information. ~~
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
*/
.content {
padding: 10px 0;
text-align: center;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
.container .content p {
text-align: justify;
}
.container .content table {
text-align: center;
}
-->
</style></head>
<body>
<div class="container">
<div class="content">
<h1> Liga de Rugby Universitário<!-- end .content --> de 2017 - Feminino</h1>
<blockquote>
<blockquote>
<p>O Torneio Feminino da Liga de Rugby Universitário de 2017 foi a única competição fluminense de rugby football disputada por times universitários masculinos durante o ano de 2017, sob o título 3º Torneio da Liga de Rugby Universitário.</p>
</blockquote>
</blockquote>
<p> </p>
<p style="font-weight: bold; text-align: left;">Clubes Participantes</p>
<p style="text-align: justify;">UERJ, UFRJ, Rural e UFF foram as equipes universitárias que competiram pelo título do torneio.</p>
<p style="text-align: justify;"> </p>
<table width="100%" border="0">
<tr>
<th width="17%" scope="col"><img src="UERJ.png" width="150" height="150" /></th>
<th width="17%" scope="col"><img src="UFRJ.png" width="150" height="150" /></th>
<th width="17%" scope="col"><img src="Rural.png" width="150" height="150" /></th>
<th width="16%" scope="col"><img src="UFF.png" width="150" height="150" /></th>
</tr>
<tr>
<td style="text-align: center; font-weight: bold;">UERJ</td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">UFRJ</span></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">Rural</span></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">UFF</span></td>
</tr>
<tr>
<td style="text-align: center">Rio de Janeiro, RJ</td>
<td style="text-align: center">Rio de Janeiro, RJ</td>
<td style="text-align: center">Seropédica, RJ</td>
<td style="text-align: center">Niterói, RJ</td>
</tr>
</table>
<p style="text-align: left;"> </p>
<p style="text-align: left; font-weight: bold;">Etapa </p>
<p style="text-align: justify;">A terceira edição do Torneio da Liga de Rugby Universitário foi a única edição disputada no ano de 2017, sendo a último organizada sob o antigo modelo de torneios independentes.</p>
<table width="80%" border="1" align="center">
<tr>
<th scope="col">Etapa</th>
<th scope="col">Lugar</th>
<th scope="col">Data</th>
<th scope="col">Campeão</th>
</tr>
<tr>
<td style="font-weight: bold">I</td>
<td>Seropédica</td>
<td>1 de Julho de 2017</td>
<td>UFRJ</td>
</tr>
</table>
<p style="text-align: left;"> </p>
<p style="text-align: left; font-weight: bold;">Classificação Final</p>
<p style="text-align: justify;">Após o fim das três etapas, a UFRJ foi declarada campeã geral, ficando a UERJ com a segunda posição. Seguiram nas demais posições, respectivamente, Rural e UFF.</p>
<table width="90%" border="1" align="center">
<tr>
<th width="7%" scope="col">Posição</th>
<th width="35%" scope="col">Clube</th>
<th width="8%" scope="col">Seropédica</th>
<th width="10%" scope="col">Pontuação Final</th>
</tr>
<tr>
<td>1º</td>
<td>UFRJ</td>
<td>30</td>
<td>30</td>
</tr>
<tr>
<td>2º</td>
<td>UERJ</td>
<td>28</td>
<td>28</td>
</tr>
<tr>
<td>3º</td>
<td>Rural</td>
<td>26</td>
<td>26</td>
</tr>
<tr>
<td>4º</td>
<td>UFF</td>
<td>24</td>
<td>24</td>
</tr>
</table>
<p> </p>
<p style="font-weight: bold">Elencos</p>
<p>Os elencos das equipes universitárias são compostos por estudantes de graduação e pós-graduação das referidas instituições, duas cotas de atletas de fora da instituição para cada jogo e três para todo torneio foram utilizadas em 2017.</p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UERJ Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">Ana Célia Siqueira</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Ana Cláudia Gonçalves</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>Asmyn de Lurdes</td>
<td>4</td>
<td>56</td>
</tr>
<tr>
<td>Esther Luciano</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Flávia Barizon</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Leandra Marchezi</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Stefanie Moreira</td>
<td>4</td>
<td>15</td>
</tr>
<tr>
<td>Stephanie Tavares</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Suellen Oliveira</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Tamires Alves</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Ty Queiroz</td>
<td>4</td>
<td>5</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UFRJ Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="64">Andrezza Pontes</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Beatriz Peixoto</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>Gabriela Romero</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Giselle de Oliveira</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Giuli Ana Nascimento</td>
<td>4</td>
<td>4</td>
</tr>
<tr>
<td>Giulia Cardoso</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Hannah Marques</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Juliana Fernandes</td>
<td>4</td>
<td>15</td>
</tr>
<tr>
<td>Layla dos Anjos</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Marcela Werneck</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Quésia Gabrielle</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Raissa Vieira</td>
<td>4</td>
<td>25</td>
</tr>
<tr>
<td>Samêlla Cunha</td>
<td>2</td>
<td>5</td>
</tr>
<tr>
<td>Sarah Rodrigues</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Thaíze Rapalo</td>
<td>4</td>
<td>20</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">Rural Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="64">Amanda Mayerhofer</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Bianca Trindade</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Bruna de Oliveira</td>
<td>2</td>
<td>5</td>
</tr>
<tr>
<td>Fernanda Severo</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Juliana Altomar</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Juliana Thompson</td>
<td>4</td>
<td>4</td>
</tr>
<tr>
<td>Letícia Noda</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Marjorie Mezabarba</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Melissa Mota</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Nathália Romera</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Sasha Diamantino</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>Thaynara de Alcantara</td>
<td>2</td>
<td>0</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UFF Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">Ana Inês Mignot</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Ana Torrezan</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Bruna Costa</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Cindy Scarpa</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Ester Souza</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Isabelli de Sena</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Larissa Santos</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Maura Lucy</td>
<td>4</td>
<td>22</td>
</tr>
<tr>
<td>Michelle da Assumpção</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Moana Astigarreta</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Paloma Coreia</td>
<td>2</td>
<td>0</td>
</tr>
</table>
<p> </p>
<p style="font-size: 80%"> </p>
<p style="font-weight: bold">Jogadores</p>
<p style="font-weight: bold; font-size: 80%;">Maiores Pontuadores</p>
<table width="50%" border="1" align="center">
<tr>
<th width="8%" scope="col">Rank</th>
<th width="74%" scope="col">Jogador</th>
<th width="18%" scope="col">Pontos</th>
</tr>
<tr>
<td>1</td>
<td>Asmyn de Lurdes (UERJ)</td>
<td>56</td>
</tr>
<tr>
<td>2</td>
<td>Raíssa Vieira (UFRJ)</td>
<td>25</td>
</tr>
<tr>
<td>3</td>
<td>Maura Lucy (UFF)</td>
<td>22</td>
</tr>
<tr>
<td>4</td>
<td>Thaíze Rapalo (UFRJ)</td>
<td>20</td>
</tr>
<tr>
<td>5</td>
<td>Stefanie Moreira (UERJ), Juliana Fernandes (UFRJ)</td>
<td>15</td>
</tr>
<tr>
<td>6</td>
<td>Ty Queiroz (UERJ), Sâmella de Oliveira (UFRJ), Beatriz Peixoto (UFRJ), Bruna de Oliveira (Rural), Sasha Diamantino (Rural), Marjorie Mezabarba (Rural), Moana Astigarreta (UFF), Isabelli de Sena (UFF), Ana Inês Mignot (UFF)</td>
<td>5</td>
</tr>
<tr>
<td>7</td>
<td>Ana Cláudia Gonçalves (UERJ), Giuli Ana Nascimento (UFRJ), Juliana Thompson (Rural)</td>
<td>4</td>
</tr>
</table>
<p style="font-size: 80%;"> </p>
<p style="font-weight: bold; font-size: 80%;">Tries Marcados </p>
<table width="50%" border="1" align="center">
<tr>
<th width="16%" scope="col">Rank</th>
<th width="66%" scope="col">Jogador</th>
<th width="18%" scope="col">Tries</th>
</tr>
<tr>
<td>1</td>
<td>Asmyn de Lurdes (UERJ)</td>
<td>8</td>
</tr>
<tr>
<td>2</td>
<td>Raíssa Vieira (UFRJ)</td>
<td>5</td>
</tr>
<tr>
<td>3</td>
<td>Thaíze Rapalo (UFRJ), Maura Lucy (UFF)</td>
<td>4</td>
</tr>
<tr>
<td>4</td>
<td>Stefanie Moreira (UERJ), Juliana Fernandes (UFRJ)</td>
<td>3</td>
</tr>
<tr>
<td>5</td>
<td>Ty Queiroz (UERJ), Sâmella Cunha (UFRJ), Beatriz Peixoto (UFRJ), Bruna de Oliveira (Rural), Sasha Diamantino (Rural), Marjorie Mezabarba (Rural), Moana Astigarreta (UFF), Isabelli de Sena (UFF), Ana Inês Mignot (UFF)</td>
<td>1</td>
</tr>
</table>
<p> </p>
<p style="font-weight: bold; font-size: 80%;">Conversões Marcadas</p>
<table width="50%" border="1" align="center">
<tr>
<th width="14%" scope="col">Rank</th>
<th width="69%" scope="col">Jogador</th>
<th width="17%" scope="col">Conversões</th>
</tr>
<tr>
<td>1</td>
<td>Asmyn de Lurdes (UERJ)</td>
<td>8</td>
</tr>
<tr>
<td>2</td>
<td>Ana Cláudia Gonçalves (UERJ), Giuli Ana Nascimento (UFRJ), Juliana Thompson (Rural)</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>Maura Lucy (UFF)</td>
<td>1</td>
</tr>
</table>
<p style="font-size: 80%;"> </p>
<p style="font-weight: bold; font-size: 80%;">Penalidades Marcados </p>
<table width="50%" border="1" align="center">
<tr>
<th width="13%" scope="col">Rank</th>
<th width="69%" scope="col">Jogador</th>
<th width="18%" scope="col">Penalidades</th>
</tr>
<tr>
<td>1</td>
<td>(não houve tiros de penalidades marcados durante a competição)</td>
<td>0</td>
</tr>
</table>
<p style="font-size: 80%;"> </p>
<p style="font-weight: bold; font-size: 80%;">Drop Goals Marcados</p>
<table width="50%" border="1" align="center">
<tr>
<th width="14%" scope="col">Rank</th>
<th width="69%" scope="col">Jogador</th>
<th width="17%" scope="col">Drop Goals</th>
</tr>
<tr>
<td>1</td>
<td>(não houve drop goals marcados durante a competição)</td>
<td>0</td>
</tr>
</table>
<p style="font-size: 80%;"> </p>
<p style="font-size: 100%; font-weight: bold;">Resultado dos Jogos</p>
<p style="font-size: 80%; font-weight: bold;">I Etapa - Seropédica</p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 3</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UERJ 10 x 20 UFRJ</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UERJ.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Asmyn de Lurdes (1), Autoria Desconhecida (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: </p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Thaíze Rapalo (2), Raíssa Vieira (1), Juliana Fernandes (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: </p></td>
<td><img src="UFRJ.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 4</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UFF 15 x 12 Rural</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UFF.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Maura Lucy (1), Isabelli de Sena (1), Ana Inês Mignot (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: </p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Bruna de Oliveira (1), Sasha Diamantino (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: Juliana Thompson (1)</p></td>
<td><img src="Rural.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 7</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UFRJ 15 x 7 UFF</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UFRJ.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Juliana Fernandes (2), Autoria Desconhecida (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: </p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Maura Lucy (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: Maura Lucy (1)</p></td>
<td><img src="UFF.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 8</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">Rural 0 x 40 UERJ</span></td>
<td> </td>
</tr>
<tr>
<td><img src="Rural.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: </p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: </p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Asmyn de Lurdes (2), Ty Queiroz (1), Stefanie Moreira (1), Autoria Desconhecida (2)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: Asmyn de Lurdes (2), Ana Cláudia Gonçalves (1), Autoria Desconhecida (2)</p></td>
<td><img src="UERJ.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 11</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UERJ 28 x 10 UFF</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UERJ.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Asmyn de Lurdes (3), Stefanie Moreira (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: Asmyn de Lurdes (4)</p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Maura Lucy (1), Moana Astigarreta (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: </p></td>
<td><img src="UFF.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Fase de Grupos - Jogo 12</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UFRJ 22 x 0 Rural</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UFRJ.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Raissa Vieira (1), Samêlla Cunha (1), Beatriz Peixoto (1), Thaíze Rapalo (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: Giuli Ana Nascimento (1)</p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: </p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: </p></td>
<td><img src="Rural.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Decisão de 3º e 4º</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UFF 5 x 7 Rural</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UFF.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Maura Lucy (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: </p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Marjorie Mezabarba (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: Juliana Thompson (1)</p></td>
<td><img src="Rural.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
<table width="80%" border="0" align="center">
<tr>
<th scope="col"> </th>
<th scope="col"><span style="font-size: 60%; text-align: center;">Final</span></th>
<th scope="col"> </th>
</tr>
<tr>
<td> </td>
<td><span style="font-size: 80%; text-align: center;">UFRJ 22 x 21 UERJ</span></td>
<td> </td>
</tr>
<tr>
<td><img src="UFRJ.png" alt="" width="150" height="150" /></td>
<td><p style="font-size: 60%; text-align: center;">Tries do Time A: Raissa Vieira (3), Thaíze Rapalo (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time A: Giuli Ana Nascimento (1)</p>
<p style="font-size: 60%; text-align: center;">Tries do Time B: Asmyn de Lurdes (2), Stefanie Moreira (1)</p>
<p style="font-size: 60%; text-align: center;">Conversões do Time B: Asmyn de Lurdes (2), Ana Cláudia Gonçalves (1)</p></td>
<td><img src="UERJ.png" alt="" width="150" height="150" /></td>
</tr>
</table>
<p> </p>
</div>
<!-- end .container --></div>
</body>
</html>