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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Task Report</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<table align="center" cellpadding="2" style="background-color:#000000">
<thead>
<tr valign="middle" style="background-color:#a5c2ff; font-size:110%; font-weight:bold; text-align:center">
<td rowspan="2">Completed</td>
<td rowspan="2">Cost</td>
<td rowspan="2">Dependencies</td>
<td rowspan="2">Duration</td>
<td rowspan="2">Effort</td>
<td rowspan="2">Criticalness</td>
<td rowspan="2">Path Criticalness</td>
<td rowspan="2">Efficiency</td>
<td rowspan="2">End</td>
<td rowspan="2">End Buf.</td>
<td rowspan="2">End Buf. Start</td>
<td rowspan="2">Flags</td>
<td rowspan="2">Followers</td>
<td rowspan="2">Free Load</td>
<td rowspan="2">Id</td>
<td rowspan="2">Index</td>
<td rowspan="2">Kotrus ID</td>
<td rowspan="2">Max. Effort</td>
<td rowspan="2">Max. End</td>
<td rowspan="2">Max. Start</td>
<td rowspan="2">Min. Effort</td>
<td rowspan="2">Min. End</td>
<td rowspan="2">Min. Start</td>
<td rowspan="2">Name</td>
<td rowspan="2">No.</td>
<td rowspan="2">Note</td>
<td rowspan="2">Priority</td>
<td rowspan="2">Profit</td>
<td rowspan="2">Project ID</td>
<td rowspan="2">Rate</td>
<td rowspan="2">Reference</td>
<td rowspan="2">Resources</td>
<td rowspan="2">Responsibilities</td>
<td rowspan="2">Responsible</td>
<td rowspan="2">Revenue</td>
<td rowspan="2">Scenario</td>
<td rowspan="2">Seq. No.</td>
<td rowspan="2">Start</td>
<td rowspan="2">Start Buf.</td>
<td rowspan="2">Start Buf. End</td>
<td rowspan="2">Status</td>
<td rowspan="2">Utilization</td>
<td colspan="31">Jan 2003</td>
<td colspan="28">Feb 2003</td>
<td colspan="31">Mar 2003</td>
<td colspan="5">Jan 2003</td>
<td colspan="4">Feb 2003</td>
<td colspan="4">Mar 2003</td>
<td colspan="1">Apr 2003</td>
<td colspan="3">2003</td>
</tr>
<tr>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 1</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 2</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 3</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 4</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 5</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 6</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 7</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 8</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 9</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">10</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">11</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">12</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">13</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">14</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">15</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">16</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">17</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">18</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">19</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">20</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">21</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">22</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">23</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">24</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">25</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">26</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">27</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">28</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">29</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">30</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">31</td>
<td style="background-color:#a387ff; font-size:80%; text-align:center"> 1</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 2</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 3</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 4</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 5</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 6</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 7</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 8</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 9</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">10</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">11</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">12</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">13</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">14</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">15</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">16</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">17</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">18</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">19</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">20</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">21</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">22</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">23</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">24</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">25</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">26</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">27</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">28</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 1</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 2</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 3</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 4</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 5</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 6</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 7</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 8</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center"> 9</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">10</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">11</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">12</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">13</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">14</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">15</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">16</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">17</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">18</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">19</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">20</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">21</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">22</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">23</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">24</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">25</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">26</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">27</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">28</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">29</td>
<td style="background-color:#7f95c4; font-size:80%; text-align:center">30</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">31</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 1</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 2</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 3</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 4</td>
<td style="background-color:#a387ff; font-size:80%; text-align:center"> 5</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 6</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 7</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 8</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center"> 9</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">10</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">11</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">12</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">13</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">14</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">Jan</td>
<td style="background-color:#a387ff; font-size:80%; text-align:center">Feb</td>
<td style="background-color:#a5c2ff; font-size:80%; text-align:center">Mar</td>
</tr>
</thead>
<tbody>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">51%</td>
<td style="text-align:right; padding-right:15; font-size:90%; ">36,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; font-size:90%; ">83.7</td>
<td style="text-align:right; padding-right:15; font-size:90%; ">90</td>
<td style="text-align:right; padding-right:15; font-size:90%; ">0</td>
<td style="text-align:right; padding-right:15; font-size:90%; ">0</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-03-25 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 00:00:00 GMT</td>
<td style="text-align:left; ">flag1</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1</td>
<td style="text-align:right; ">1.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:2; font-size:105%; ">Task 1</td>
<td style="text-align:right; ">1.</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; ">500</td>
<td style="text-align:right; padding-right:15; font-size:90%; ">10,500</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:72%; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:15; font-size:90%; ">46,500</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">1.</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 00:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2002-12-31 23:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">Work in progress</td>
<td style="text-align:right; "> </td>
<td onmouseover="status='2003-01-01 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">v=2</td>
<td onmouseover="status='2003-01-02 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-03 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-04 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-05 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-06 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-07 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-08 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-09 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-10 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-11 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-12 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-13 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-14 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-15 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-16 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-17 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-18 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-19 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-20 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-21 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-22 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-23 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-24 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-25 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-26 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-27 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-28 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-29 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-30 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-01-31 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-01 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-02 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-03 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-04 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-05 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-06 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-07 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-08 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-09 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-10 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-11 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2</td>
<td onmouseover="status='2003-02-12 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-13 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-14 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-15 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-16 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-17 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-18 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-19 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-20 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-21 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-22 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-23 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-24 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-25 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-26 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-27 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-28 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-01 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-02 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-03 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-04 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-05 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-06 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-07 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-08 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-09 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-10 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-11 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-12 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-13 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-14 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-15 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-16 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-17 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-18 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-19 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-20 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-21 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-22 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-23 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-24 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-25 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">1=v</td>
<td colspan="3" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td onmouseover="status='2002-12-30 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">v=6</td>
<td onmouseover="status='2003-01-06 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">10</td>
<td onmouseover="status='2003-01-13 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">10</td>
<td onmouseover="status='2003-01-20 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">10</td>
<td onmouseover="status='2003-01-27 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">10</td>
<td onmouseover="status='2003-02-03 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">10</td>
<td onmouseover="status='2003-02-10 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">7</td>
<td onmouseover="status='2003-02-17 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-24 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-03 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-10 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-17 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-24 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">2=v</td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td onmouseover="status='2003-01-01 / [t1] Task 1';return true;" style="background-color:#87ff75; text-align:center; font-weight:bold; font-size:90%; ">v=46</td>
<td onmouseover="status='2003-02-01 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">27</td>
<td onmouseover="status='2003-03-01 / [t1] Task 1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; ">17=v</td>
</tr>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">76%</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">9,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; font-size:90%; ">41.3</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">30</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">44</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">88</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 09:00:00 GMT</td>
<td style="text-align:left; ">flag1, flag2, flag3</td>
<td style="text-align:left; font-size:80%; ">t1.t4</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1.t2</td>
<td style="text-align:right; ">2.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:17; ">Task 2</td>
<td style="text-align:right; ">2.</td>
<td style="text-align:left; font-size:80%; ">This is Task2</td>
<td style="text-align:right; ">10</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">(9,000)</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "><a href="http://www.taskjuggler.org">taskjuggler.org</a></td>
<td style="text-align:left; font-size:72%; ">Tux 1</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; ">Tux 2</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">2.</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 09:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 08:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">On schedule</td>
<td style="text-align:right; "> </td>
<td onmouseover="status='2003-01-01 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=1</td>
<td onmouseover="status='2003-01-02 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-03 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-04 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-05 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-06 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-07 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-08 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-09 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-10 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-11 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-12 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-13 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-14 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-15 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-16 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-17 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-18 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-19 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-20 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-21 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-22 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-23 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-24 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-25 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-26 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-27 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-28 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-29 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-30 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-31 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-01 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-02 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-03 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-04 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-05 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-06 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-07 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-08 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-09 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-10 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-11 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1=]</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2002-12-30 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=3</td>
<td onmouseover="status='2003-01-06 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-13 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-20 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-27 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-03 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-10 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">2=]</td>
<td colspan="7" style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-01 / [t1.t2] Task 2';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=23</td>
<td onmouseover="status='2003-02-01 / [t1.t2] Task 2';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">7=]</td>
<td style="text-align:center; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#fffbdb; ">
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">9,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">30</td>
<td style="text-align:right; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; ">1,0</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">34</td>
<td style="text-align:left; ">tux1</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">tux1</td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:32; font-size:95%; ">Tux 1</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">(9,000)</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">300</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; font-size:80%; ">t1.t4</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">46.9%</td>
<td onmouseover="status='2003-01-01 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-02 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-03 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-06 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-07 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-08 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-09 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-10 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-13 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-14 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-15 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-16 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-17 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-20 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-21 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-22 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-23 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-24 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-27 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-28 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-29 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-30 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-31 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td style="background-color:#a387ff; text-align:center; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-03 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-04 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-05 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-06 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-07 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-11 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2002-12-30 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">3</td>
<td onmouseover="status='2003-01-06 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-13 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-20 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-27 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-03 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-10 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">2</td>
<td colspan="7" style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-01 / [tux1] Tux 1';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">23</td>
<td onmouseover="status='2003-02-01 / [tux1] Tux 1';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">7</td>
<td style="text-align:center; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">76%</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">15,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; font-size:90%; ">41.3</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">30</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">44</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">88</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 15</td>
<td style="text-align:left; font-size:90%; ">2003-01-03 11:00:00 GMT</td>
<td style="text-align:left; ">flag1, flag4</td>
<td style="text-align:left; font-size:80%; ">t1.t4, t1.m1, t1.m2</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1.t3</td>
<td style="text-align:right; ">3.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:17; ">Task 3</td>
<td style="text-align:right; ">3.</td>
<td style="text-align:left; font-size:80%; ">This is a sub-task of Task1</td>
<td style="text-align:right; ">900</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">(15,000)</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:72%; ">Tux 2</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; ">Tux 3</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">3.</td>
<td style="text-align:left; font-size:90%; ">2003-01-01 09:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 15</td>
<td style="text-align:left; font-size:90%; ">2003-01-03 10:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">On schedule</td>
<td style="text-align:right; "> </td>
<td onmouseover="status='2003-01-01 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=1</td>
<td onmouseover="status='2003-01-02 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-03 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-04 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-05 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-06 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-07 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-08 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-09 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-10 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-11 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-12 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-13 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-14 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-15 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-16 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-17 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-18 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-19 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-20 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-21 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-22 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-23 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-24 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-25 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-26 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-01-27 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-28 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-29 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-30 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-31 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-01 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-02 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-03 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-04 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-05 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-06 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-07 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-08 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-09 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-10 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-11 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1=]</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2002-12-30 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=3</td>
<td onmouseover="status='2003-01-06 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-13 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-20 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-27 / [t1.t3] Task 3';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-03 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-10 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">2=]</td>
<td colspan="7" style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-01 / [t1.t3] Task 3';return true;" style="background-color:#87ff75; text-align:center; font-size:90%; ">[=23</td>
<td onmouseover="status='2003-02-01 / [t1.t3] Task 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">7=]</td>
<td style="text-align:center; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#fffbdb; ">
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">15,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">30</td>
<td style="text-align:right; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; ">1,0</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">34</td>
<td style="text-align:left; ">tux2</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">tux der 2.</td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:32; font-size:95%; ">Tux 2</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">(15,000)</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">500</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; font-size:80%; ">t1.t2</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">46.9%</td>
<td onmouseover="status='2003-01-01 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-02 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-03 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-06 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-07 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-08 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-09 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-10 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-13 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-14 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-15 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-16 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-17 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-20 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-21 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-22 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-23 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-24 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-27 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-28 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-29 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-30 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-01-31 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">1</td>
<td style="background-color:#a387ff; text-align:center; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-03 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-04 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-05 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-06 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-07 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-11 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2002-12-30 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">3</td>
<td onmouseover="status='2003-01-06 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-13 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-20 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-01-27 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-03 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-10 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">2</td>
<td colspan="7" style="text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-01-01 / [tux2] Tux 2';return true;" style="background-color:#c9ffc1; text-align:center; font-size:90%; ">23</td>
<td onmouseover="status='2003-02-01 / [tux2] Tux 2';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">7</td>
<td style="text-align:center; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">0%</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:left; font-size:80%; ">t1.t3</td>
<td style="text-align:right; font-size:90%; ">0</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">1</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">45</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:left; ">flag1</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1.m1</td>
<td style="text-align:right; ">4.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:17; ">Milestone1</td>
<td style="text-align:right; ">4.</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; ">500</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">28,000</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:72%; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:7; font-size:90%; ">28,000</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">5.</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 17:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">Not yet started</td>
<td style="text-align:right; "> </td>
<td colspan="3" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-11 / [t1.m1] Milestone1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td colspan="3" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="4" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [t1.m1] Milestone1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td colspan="7" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-01 / [t1.m1] Milestone1';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">0%</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:left; font-size:80%; ">t1.t3</td>
<td style="text-align:right; font-size:90%; ">0</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">1</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">45</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:left; ">flag1</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1.m2</td>
<td style="text-align:right; ">5.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:17; ">Milestone2</td>
<td style="text-align:right; ">5.</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; ">500</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">18,500</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:72%; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:7; font-size:90%; ">18,500</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">6.</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 0</td>
<td style="text-align:left; font-size:90%; ">2003-02-11 17:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">Not yet started</td>
<td style="text-align:right; "> </td>
<td colspan="3" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-11 / [t1.m2] Milestone2';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td colspan="3" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="5" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-weight:bold; font-size:90%; "> </td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td colspan="4" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [t1.m2] Milestone2';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td colspan="7" style="text-align:center; font-weight:bold; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-01 / [t1.m2] Milestone2';return true;" style="background-color:#ff5a5d; text-align:center; font-weight:bold; font-size:90%; "><></td>
<td style="text-align:center; font-weight:bold; font-size:90%; "> </td>
</tr>
<tr valign="middle" style="background-color:#f3ebae; ">
<td style="text-align:right; font-size:90%; ">0%</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">12,000</td>
<td style="text-align:left; font-size:80%; ">t1.t2, t1.t3</td>
<td style="text-align:right; font-size:90%; ">41.3</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">30</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">44</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">88</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; ">2003-03-25 18:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 10</td>
<td style="text-align:left; font-size:90%; ">2003-02-13 14:00:00 GMT</td>
<td style="text-align:left; ">flag1</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; ">t1.t4</td>
<td style="text-align:right; ">6.</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td style="text-align:left; font-size:90%; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:17; ">Task 4</td>
<td style="text-align:right; ">6.</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; ">500</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">(12,000)</td>
<td style="text-align:left; ">prj (A)</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:72%; ">Tux 3</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; ">Tux 1</td>
<td style="text-align:right; padding-right:7; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; ">4.</td>
<td style="text-align:left; font-size:90%; ">2003-02-12 09:00:00 GMT</td>
<td style="text-align:right; font-size:90%; "> 10</td>
<td style="text-align:left; font-size:90%; ">2003-02-13 13:59:59 GMT</td>
<td style="text-align:left; font-size:90%; ">Not yet started</td>
<td style="text-align:right; "> </td>
<td colspan="3" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="2" style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-12 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">[=1</td>
<td onmouseover="status='2003-02-13 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-14 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-15 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-16 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-17 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-18 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-19 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-20 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-21 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-22 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-23 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-02-24 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-25 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-26 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-27 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-28 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-01 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-02 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-03 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-04 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-05 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-06 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-07 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-08 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-09 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-10 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-11 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-12 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-13 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-14 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-15 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-16 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-17 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-18 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-19 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-20 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-21 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-22 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-23 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">==</td>
<td onmouseover="status='2003-03-24 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-25 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1=]</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td colspan="4" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">[=3</td>
<td onmouseover="status='2003-02-17 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-24 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-03 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-10 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-17 / [t1.t4] Task 4';return true;" style="background-color:#ff5a5d; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-24 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">2=]</td>
<td style="text-align:center; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-01 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">[=13</td>
<td onmouseover="status='2003-03-01 / [t1.t4] Task 4';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">17=]</td>
</tr>
<tr valign="middle" style="background-color:#fffbdb; ">
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">12,000</td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">30</td>
<td style="text-align:right; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; ">1,0</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">34</td>
<td style="text-align:left; ">tux3</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">0</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td nowrap="nowrap" style="text-align:left; padding-left:32; font-size:95%; ">Tux 3</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">(12,000)</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; ">400</td>
<td style="text-align:left; "> </td>
<td style="text-align:left; font-size:80%; "> </td>
<td style="text-align:left; font-size:80%; ">t1.t3</td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">0</td>
<td style="text-align:left; font-size:90%; ">Plan</td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:left; "> </td>
<td style="text-align:right; padding-right:2; font-size:90%; ">46.9%</td>
<td colspan="3" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="5" style="text-align:right; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:right; font-size:90%; "> </td>
<td colspan="2" style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-12 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-13 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-14 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-17 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-18 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-19 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-20 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-21 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-02-24 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-25 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-26 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-27 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-02-28 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-03-03 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-04 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-05 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-06 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-07 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-03-10 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-11 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-12 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-13 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-14 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-03-17 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-18 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-19 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-20 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-21 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td onmouseover="status='2003-03-24 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td onmouseover="status='2003-03-25 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">1</td>
<td colspan="3" style="text-align:center; font-size:90%; "> </td>
<td colspan="2" style="background-color:#fffc60; text-align:center; font-size:90%; "> </td>
<td style="text-align:center; font-size:90%; "> </td>
<td colspan="4" style="text-align:right; font-size:90%; "> </td>
<td style="background-color:#a387ff; text-align:right; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-10 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">3</td>
<td onmouseover="status='2003-02-17 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-02-24 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-03 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-10 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-17 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">5</td>
<td onmouseover="status='2003-03-24 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">2</td>
<td style="text-align:center; font-size:90%; "> </td>
<td style="text-align:right; font-size:90%; "> </td>
<td onmouseover="status='2003-02-01 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">13</td>
<td onmouseover="status='2003-03-01 / [tux3] Tux 3';return true;" style="background-color:#ffa6a7; text-align:center; font-size:90%; ">17</td>
</tr>
</tbody>
</table>
</body></html>
|