Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5018 dpurdie 1
/*
2
 * Table styles
3
 * dataTables.vix.css
4
 */
5
table.dataTable {
6
  width: 100%;
7
  margin: 0 auto;
8
  clear: both;
9
  border-collapse: separate;
10
  border-spacing: 0;
11
  /*
12
   * Header and footer styles
13
   */
14
  /*
15
   * Body styles
16
   */
17
}
5050 dpurdie 18
 
19
.side_panel table.side_panel_table tbody td {
20
  border-bottom-style: solid;
21
  border-width: 1px;
22
  border-color: white;
23
  padding-left: 1em;
24
  color: black;
25
  //font-weight: bold;
26
  padding-top: 4px;
27
  padding-bottom: 4px;
28
}
5102 dpurdie 29
 
30
table.side_panel_table .side_panel_data:hover {
31
 background-color:#4CAEC5;
5050 dpurdie 32
}
33
 
5102 dpurdie 34
.side_panel,
35
table.side_panel_table .side_panel_data {
36
    background-color: #87E7FD;
5050 dpurdie 37
}
38
.side_panel table.dataTable thead th,
39
.side_panel table.dataTable thead td {
40
  border-bottom-style: solid;
41
  border-width: 1px;
42
  border-color: white;
43
}
44
 
5102 dpurdie 45
.side_panel .dataTables_wrapper.no-footer .dataTables_scrollBody {
46
  border-bottom: none;
47
}
5050 dpurdie 48
 
5018 dpurdie 49
table.dataTable thead th,
50
table.dataTable tfoot th {
51
  font-weight: bold;
52
}
53
table.dataTable thead th,
54
table.dataTable thead td {
55
  // padding: 10px 18px;
56
  border-bottom: 1px solid #111111;
57
}
58
table.dataTable thead th:active,
59
table.dataTable thead td:active {
60
  outline: none;
61
}
6577 dpurdie 62
table.dataTable tfoot th {
63
	border-top: 1px solid #111111;
64
	//padding: 10px 18px 6px 18px;
65
}
5018 dpurdie 66
table.dataTable tfoot td {
6577 dpurdie 67
  //padding: 10px 18px 6px 18px;
68
  //border-top: 1px solid #111111;
5018 dpurdie 69
}
70
table.dataTable thead .sorting_asc,
71
table.dataTable thead .sorting_desc,
72
table.dataTable thead .sorting {
73
  cursor: pointer;
74
  *cursor: hand;
75
}
76
table.dataTable thead .sorting {
77
  background: url("images/sort_both.png") no-repeat center right;
78
}
79
table.dataTable thead .sorting_asc {
80
  background: url("images/sort_asc.png") no-repeat center right;
81
}
82
table.dataTable thead .sorting_desc {
83
  background: url("images/sort_desc.png") no-repeat center right;
84
}
85
table.dataTable thead .sorting_asc_disabled {
86
  background: url("images/sort_asc_disabled.png") no-repeat center right;
87
}
88
table.dataTable thead .sorting_desc_disabled {
89
  background: url("images/sort_desc_disabled.png") no-repeat center right;
90
}
91
table.dataTable tbody tr {
92
  background-color: white;
93
}
94
table.dataTable tbody tr.selected {
95
  background-color: #b0bed9;
96
}
5050 dpurdie 97
 
5018 dpurdie 98
table.dataTable tbody th,
99
table.dataTable tbody td {
100
  /* padding: 8px 10px; */
101
  /* Taken from body_rowg */
102
    color:Gray;
103
    font:11px tahoma,sans-serif;
104
    padding-right:1em;
105
    text-decoration:none;
106
}
107
/* Taken from txt_linked */
108
td a {
109
    color:#0066FF;
110
    underline;
111
    font-style:normal;
112
}
113
 
114
 
115
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
116
  border-top: 1px solid #dddddd;
117
}
118
table.dataTable.row-border tbody tr:first-child th,
119
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
120
table.dataTable.display tbody tr:first-child td {
121
  border-top: none;
122
}
123
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
124
  border-top: 1px solid #dddddd;
125
  border-right: 1px solid #dddddd;
126
}
127
table.dataTable.cell-border tbody tr th:first-child,
128
table.dataTable.cell-border tbody tr td:first-child {
129
  border-left: 1px solid #dddddd;
130
}
131
table.dataTable.cell-border tbody tr:first-child th,
132
table.dataTable.cell-border tbody tr:first-child td {
133
  border-top: none;
134
}
6701 dpurdie 135
 
136
table.dataTable.underline tbody td {
137
	border-bottom: 1pt solid #dad7c8;
138
}
139
 
5018 dpurdie 140
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
141
  background-color: #f9f9f9;
142
}
143
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
144
  background-color: #abb9d3;
145
}
146
table.dataTable.hover tbody tr:hover,
147
table.dataTable.hover tbody tr.odd:hover,
148
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
149
table.dataTable.display tbody tr.odd:hover,
150
table.dataTable.display tbody tr.even:hover {
151
  background-color: whitesmoke;
152
}
153
table.dataTable.hover tbody tr:hover.selected,
154
table.dataTable.hover tbody tr.odd:hover.selected,
155
table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
156
table.dataTable.display tbody tr.odd:hover.selected,
157
table.dataTable.display tbody tr.even:hover.selected {
158
  background-color: #a9b7d1;
159
}
160
table.dataTable.order-column tbody tr > .sorting_1,
161
table.dataTable.order-column tbody tr > .sorting_2,
162
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
163
table.dataTable.display tbody tr > .sorting_2,
164
table.dataTable.display tbody tr > .sorting_3 {
165
  background-color: #f9f9f9;
166
}
167
table.dataTable.order-column tbody tr.selected > .sorting_1,
168
table.dataTable.order-column tbody tr.selected > .sorting_2,
169
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
170
table.dataTable.display tbody tr.selected > .sorting_2,
171
table.dataTable.display tbody tr.selected > .sorting_3 {
172
  background-color: #acbad4;
173
}
174
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
175
  background-color: #f1f1f1;
176
}
177
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
178
  background-color: #f3f3f3;
179
}
180
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
181
  background-color: whitesmoke;
182
}
183
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
184
  background-color: #a6b3cd;
185
}
186
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
187
  background-color: #a7b5ce;
188
}
189
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
190
  background-color: #a9b6d0;
191
}
192
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
193
  background-color: #f9f9f9;
194
}
195
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
196
  background-color: #fbfbfb;
197
}
198
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
199
  background-color: #fdfdfd;
200
}
201
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
202
  background-color: #acbad4;
203
}
204
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
205
  background-color: #adbbd6;
206
}
207
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
208
  background-color: #afbdd8;
209
}
210
table.dataTable.display tbody tr:hover > .sorting_1,
211
table.dataTable.display tbody tr.odd:hover > .sorting_1,
212
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
213
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
214
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
215
  background-color: #eaeaea;
216
}
217
table.dataTable.display tbody tr:hover > .sorting_2,
218
table.dataTable.display tbody tr.odd:hover > .sorting_2,
219
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
220
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
221
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
222
  background-color: #ebebeb;
223
}
224
table.dataTable.display tbody tr:hover > .sorting_3,
225
table.dataTable.display tbody tr.odd:hover > .sorting_3,
226
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
227
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
228
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
229
  background-color: #eeeeee;
230
}
231
table.dataTable.display tbody tr:hover.selected > .sorting_1,
232
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
233
table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
234
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
235
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
236
  background-color: #a1aec7;
237
}
238
table.dataTable.display tbody tr:hover.selected > .sorting_2,
239
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
240
table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
241
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
242
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
243
  background-color: #a2afc8;
244
}
245
table.dataTable.display tbody tr:hover.selected > .sorting_3,
246
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
247
table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
248
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
249
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
250
  background-color: #a4b2cb;
251
}
252
table.dataTable.no-footer {
253
  border-bottom: 1px solid #111111;
254
}
255
table.dataTable.nowrap th, table.dataTable.nowrap td {
256
  white-space: nowrap;
257
}
258
table.dataTable.compact thead th,
259
table.dataTable.compact thead td {
260
  padding: 5px 9px;
261
}
262
table.dataTable.compact tfoot th,
263
table.dataTable.compact tfoot td {
264
  padding: 5px 9px 3px 9px;
265
}
266
table.dataTable.compact tbody th,
267
table.dataTable.compact tbody td {
268
  padding: 4px 5px;
269
}
270
table.dataTable th.dt-left,
271
table.dataTable td.dt-left {
272
  text-align: left;
273
}
274
table.dataTable th.dt-center,
275
table.dataTable td.dt-center,
276
table.dataTable td.dataTables_empty {
277
  text-align: center;
278
}
279
table.dataTable th.dt-right,
280
table.dataTable td.dt-right {
281
  text-align: right;
282
}
283
table.dataTable th.dt-justify,
284
table.dataTable td.dt-justify {
285
  text-align: justify;
286
}
287
table.dataTable th.dt-nowrap,
288
table.dataTable td.dt-nowrap {
289
  white-space: nowrap;
290
}
291
table.dataTable thead th.dt-head-left,
292
table.dataTable thead td.dt-head-left,
293
table.dataTable tfoot th.dt-head-left,
294
table.dataTable tfoot td.dt-head-left {
295
  text-align: left;
296
}
297
table.dataTable thead th.dt-head-center,
298
table.dataTable thead td.dt-head-center,
299
table.dataTable tfoot th.dt-head-center,
300
table.dataTable tfoot td.dt-head-center {
301
  text-align: center;
302
}
303
table.dataTable thead th.dt-head-right,
304
table.dataTable thead td.dt-head-right,
305
table.dataTable tfoot th.dt-head-right,
306
table.dataTable tfoot td.dt-head-right {
307
  text-align: right;
308
}
309
table.dataTable thead th.dt-head-justify,
310
table.dataTable thead td.dt-head-justify,
311
table.dataTable tfoot th.dt-head-justify,
312
table.dataTable tfoot td.dt-head-justify {
313
  text-align: justify;
314
}
315
table.dataTable thead th.dt-head-nowrap,
316
table.dataTable thead td.dt-head-nowrap,
317
table.dataTable tfoot th.dt-head-nowrap,
318
table.dataTable tfoot td.dt-head-nowrap {
319
  white-space: nowrap;
320
}
321
table.dataTable tbody th.dt-body-left,
322
table.dataTable tbody td.dt-body-left {
323
  text-align: left;
324
}
325
table.dataTable tbody th.dt-body-center,
326
table.dataTable tbody td.dt-body-center {
327
  text-align: center;
328
}
329
table.dataTable tbody th.dt-body-right,
330
table.dataTable tbody td.dt-body-right {
331
  text-align: right;
332
}
333
table.dataTable tbody th.dt-body-justify,
334
table.dataTable tbody td.dt-body-justify {
335
  text-align: justify;
336
}
337
table.dataTable tbody th.dt-body-nowrap,
338
table.dataTable tbody td.dt-body-nowrap {
339
  white-space: nowrap;
340
}
341
 
342
table.dataTable,
343
table.dataTable th,
344
table.dataTable td {
345
  -webkit-box-sizing: content-box;
346
  -moz-box-sizing: content-box;
347
  box-sizing: content-box;
348
}
349
 
350
/*
351
 * Control feature layout
352
 */
353
.dataTables_wrapper {
354
  position: relative;
355
  clear: both;
356
  *zoom: 1;
357
  zoom: 1;
5050 dpurdie 358
 
359
  /*  Basic body_txt */
360
  color:#000000;
361
  font:11px tahoma,sans-serif;
362
  text-decoration:none;
5018 dpurdie 363
}
364
.dataTables_wrapper .dataTables_length {
365
  float: left;
366
}
367
.dataTables_wrapper .dataTables_filter {
368
  float: right;
369
  text-align: right;
370
}
371
.dataTables_wrapper .dataTables_filter input {
372
  margin-left: 0.5em;
373
}
374
.dataTables_wrapper .dataTables_info {
375
  /* clear: both; */
376
  float: left;
5050 dpurdie 377
 
5018 dpurdie 378
  /* padding-top: 0.755em; */
379
}
380
.dataTables_wrapper .dataTables_paginate {
381
  float: right;
382
  text-align: right;
383
  padding-top: 0.25em;
384
}
385
.dataTables_wrapper .dataTables_paginate .paginate_button {
386
  box-sizing: border-box;
387
  display: inline-block;
388
  min-width: 1.5em;
389
  padding: 0.5em 1em;
390
  margin-left: 2px;
391
  text-align: center;
392
  text-decoration: none !important;
393
  cursor: pointer;
394
  *cursor: hand;
395
  color: #333333 !important;
396
  border: 1px solid transparent;
397
}
398
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
399
  color: #333333 !important;
400
  border: 1px solid #cacaca;
401
  background-color: white;
402
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
403
  /* Chrome,Safari4+ */
404
  background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
405
  /* Chrome10+,Safari5.1+ */
406
  background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
407
  /* FF3.6+ */
408
  background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
409
  /* IE10+ */
410
  background: -o-linear-gradient(top, white 0%, gainsboro 100%);
411
  /* Opera 11.10+ */
412
  background: linear-gradient(to bottom, white 0%, gainsboro 100%);
413
  /* W3C */
414
}
415
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
416
  cursor: default;
417
  color: #666 !important;
418
  border: 1px solid transparent;
419
  background: transparent;
420
  box-shadow: none;
421
}
422
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
423
  color: white !important;
424
  border: 1px solid #111111;
425
  background-color: #585858;
426
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
427
  /* Chrome,Safari4+ */
428
  background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
429
  /* Chrome10+,Safari5.1+ */
430
  background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
431
  /* FF3.6+ */
432
  background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
433
  /* IE10+ */
434
  background: -o-linear-gradient(top, #585858 0%, #111111 100%);
435
  /* Opera 11.10+ */
436
  background: linear-gradient(to bottom, #585858 0%, #111111 100%);
437
  /* W3C */
438
}
439
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
440
  outline: none;
441
  background-color: #2b2b2b;
442
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
443
  /* Chrome,Safari4+ */
444
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
445
  /* Chrome10+,Safari5.1+ */
446
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
447
  /* FF3.6+ */
448
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
449
  /* IE10+ */
450
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
451
  /* Opera 11.10+ */
452
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
453
  /* W3C */
454
  box-shadow: inset 0 0 3px #111;
455
}
456
.dataTables_wrapper .dataTables_processing {
457
  position: absolute;
458
  top: 50%;
459
  left: 50%;
460
  width: 100%;
461
  height: 40px;
462
  margin-left: -50%;
463
  margin-top: -25px;
464
  padding-top: 20px;
465
  text-align: center;
466
  font-size: 1.2em;
467
  background-color: white;
468
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
469
  /* Chrome,Safari4+ */
470
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
471
  /* Chrome10+,Safari5.1+ */
472
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
473
  /* FF3.6+ */
474
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
475
  /* IE10+ */
476
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
477
  /* Opera 11.10+ */
478
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
479
  /* W3C */
480
}
481
.dataTables_wrapper .dataTables_length,
482
.dataTables_wrapper .dataTables_filter,
483
.dataTables_wrapper .dataTables_info,
484
.dataTables_wrapper .dataTables_processing,
485
.dataTables_wrapper .dataTables_paginate {
486
  color: #333333;
487
}
488
.dataTables_wrapper .dataTables_scroll {
489
  clear: both;
490
}
491
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
492
  *margin-top: -1px;
493
  -webkit-overflow-scrolling: touch;
494
}
495
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
496
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
497
  height: 0;
498
  overflow: hidden;
499
  margin: 0 !important;
500
  padding: 0 !important;
501
}
502
.dataTables_wrapper.no-footer .dataTables_scrollBody {
503
  border-bottom: 1px solid #111111;
504
}
505
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
506
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
507
  border-bottom: none;
508
}
509
.dataTables_wrapper:after {
510
  visibility: hidden;
511
  display: block;
512
  content: "";
513
  clear: both;
514
  height: 0;
515
}
516
 
517
@media screen and (max-width: 767px) {
518
  .dataTables_wrapper .dataTables_info,
519
  .dataTables_wrapper .dataTables_paginate {
520
    float: none;
521
    text-align: center;
522
  }
523
  .dataTables_wrapper .dataTables_paginate {
524
    margin-top: 0.5em;
525
  }
526
}
527
@media screen and (max-width: 640px) {
528
  .dataTables_wrapper .dataTables_length,
529
  .dataTables_wrapper .dataTables_filter {
530
    float: none;
531
    text-align: center;
532
  }
533
  .dataTables_wrapper .dataTables_filter {
534
    margin-top: 0.5em;
535
  }
536
}
537
 
538
/*
539
 * Namespace: DTS (DataTables Scroller)
540
 * Scroller plugin styling
541
 */
542
div.DTS div.DTS_Loading {
543
    float:left;
544
    padding-right: 2em;
545
}
546
 
547
 
548
 
549