├── CITRIX ├── css │ └── caxtonstyle.css ├── error.html ├── img │ ├── AccessGateway.ico │ ├── BlackButton.gif │ ├── BlackButtonRollover.gif │ ├── CenterBlueBkg.jpg │ ├── Error32.gif │ ├── FadeLine.gif │ ├── GreyGradient.gif │ ├── Info32.gif │ ├── LoginButtonGlow.gif │ ├── LoginButtonRolloverGlow.gif │ ├── LoginCarbonFiberBgFooter.gif │ ├── LoginCarbonFiberBgTop.gif │ ├── LoginIcon.gif │ ├── LoginIcon.png │ ├── LoginPaneCenterLeftBorderGlow.gif │ ├── LoginPaneCenterMidGlow.gif │ ├── LoginPaneCenterRightBorderGlow.gif │ ├── LoginPaneFooterLeftBorderGlow.gif │ ├── LoginPaneFooterMidBorderGlow.gif │ ├── LoginPaneFooterRightBorderGlow.gif │ ├── LoginPaneTopLeftBorderGlow.gif │ ├── LoginPaneTopMidBorderGlow.gif │ ├── LoginPaneTopRightBorderGlow.gif │ ├── NavBarLink.gif │ ├── NavCurrentBarLink.gif │ ├── ProgressWindow.gif │ ├── ProgressWindow.png │ ├── Tick32.gif │ ├── TitleHeaderCarbon.gif │ ├── WarningAlert32.gif │ ├── companyHeader01.gif │ ├── companyHeader02.gif │ ├── companyHeader03.gif │ ├── ctxBanner01.gif │ ├── ctxBanner02.gif │ ├── ctxHeader.gif │ └── ctxHeader01ForTM.gif ├── index.html ├── js │ ├── nsshare.js │ └── resources.js └── resources │ └── config.xml ├── OWA ├── css │ ├── logon.css │ └── owafont.css ├── error.html ├── img │ ├── favicon.ico │ ├── lgnbotl.gif │ ├── lgnbotm.gif │ ├── lgnbotr.gif │ ├── lgnexlogo.gif │ ├── lgnleft.gif │ ├── lgnright.gif │ ├── lgntopl.gif │ ├── lgntopm.gif │ ├── lgntopr.gif │ └── warn.png ├── index.html └── js │ └── flogon.js ├── OWA2 ├── css │ ├── logon.css │ └── owafont.css ├── error.html ├── img │ ├── lgnbotl.gif │ ├── lgnbotm.gif │ ├── lgnbotr.gif │ ├── lgnexlogo.gif │ ├── lgnleft.gif │ ├── lgnright.gif │ ├── lgntopl.gif │ ├── lgntopm.gif │ └── lgntopr.gif └── index.html └── README.md /CITRIX/css/caxtonstyle.css: -------------------------------------------------------------------------------- 1 | 2 | .CTXMSAM_ContentTitleHeader 3 | { 4 | background-color:#BAC0CE; height:8; font-weight:bold;font-size: 9pt; color: black; font-family: Arial; 5 | } 6 | 7 | .CTXMSAM_ContentArea 8 | { 9 | border-style:solid; border-color:Black; border-width:1pt; 10 | } 11 | 12 | .CTXMSAM_ContentFont 13 | { 14 | font-size: 9pt; 15 | font-family: Arial; 16 | color: Black; 17 | } 18 | 19 | .CTXMSAM_LogonFont 20 | { 21 | font-size: 8pt; 22 | font-family: Arial; 23 | color: Black; 24 | } 25 | 26 | .CTXMSAM_ErrorFont 27 | { 28 | font-size: 9pt; font-family: Arial; color:Red; 29 | } 30 | 31 | Div.PopupBlockerMessage 32 | { 33 | background:#ffd149; 34 | margin-bottom: 0px; 35 | margin-left:0px; 36 | margin-right:0px; 37 | margin-top:0px; 38 | font-size: 9pt; 39 | font-family: Arial; 40 | border-style: solid; 41 | border-color: #dfdfdf; 42 | border-width: 2pt; 43 | padding: 5pt; 44 | } 45 | 46 | /* 47 | for Caxton 48 | */ 49 | .full_width 50 | { 51 | width: 100%; 52 | margin: 0; 53 | padding: 0; 54 | border: 0; 55 | } 56 | 57 | .full_width_height 58 | { 59 | width: 100%; 60 | height: 100%; 61 | margin: 0; 62 | padding: 0; 63 | border: 0; 64 | } 65 | 66 | .header_ctx 67 | { 68 | width: 265px; 69 | height: 62px; 70 | background-image: url(../img/ctxHeader.gif); 71 | background-repeat: no-repeat; 72 | } 73 | 74 | .header_left_for_tm 75 | { 76 | width: 265px; 77 | height: 62px; 78 | background-image: url(../img/ctxHeader01ForTM.gif); 79 | background-repeat: no-repeat; 80 | } 81 | 82 | .header_left 83 | { 84 | width: 275px; 85 | height: 62px; 86 | background-image: url(../img/companyHeader01.gif); 87 | background-repeat: no-repeat; 88 | } 89 | 90 | .header_middle 91 | { 92 | height: 62px; 93 | background-image: url(../img/companyHeader02.gif); 94 | background-repeat: repeat-x; 95 | } 96 | 97 | .header_right 98 | { 99 | height: 62px; 100 | background-image: url(../img/companyHeader03.gif); 101 | background-repeat: repeat-x; 102 | } 103 | 104 | .watermark 105 | { 106 | width: 192px; 107 | height: 62px; 108 | background-position:bottom center; 109 | background-repeat: no-repeat; 110 | } 111 | 112 | .header_text 113 | { 114 | color: white; 115 | font-size: 10pt; 116 | font-family: Arial; 117 | padding-right: 20px; 118 | } 119 | 120 | .align_right 121 | { 122 | text-align: right; 123 | } 124 | 125 | ul 126 | { 127 | list-style: none; 128 | margin: 0; 129 | padding: 0; 130 | } 131 | 132 | ul li 133 | { 134 | margin: 0; 135 | padding: 0; 136 | } 137 | 138 | .navBarDiv 139 | { 140 | padding: 0; 141 | background: #3D3D3D url(../img/NavBarLink.gif) repeat-x top left; 142 | overflow:auto; 143 | border-top: 1px solid black; 144 | border-right: 1px solid black; 145 | border-left: 1px solid black; 146 | height: auto; 147 | } 148 | 149 | 150 | .navbar 151 | { 152 | height: 26px; 153 | background-image: url(../img/NavBarLink.gif); 154 | background-repeat: repeat-x; 155 | } 156 | 157 | .navBar li 158 | { 159 | display: inline; 160 | } 161 | 162 | .navBar a 163 | { 164 | float: left; 165 | border-left:1px solid #646464; 166 | border-right:1px solid black; 167 | margin: 0; 168 | padding: 6px 6px; 169 | width:87px; 170 | text-align:center; 171 | color: #FFFFFF; 172 | text-decoration: none; 173 | } 174 | 175 | .navBar #navEtchFiller 176 | { 177 | float: left; 178 | width: 0px; 179 | border-left: 1px solid #646464; 180 | margin: 0; 181 | padding: 6px 0pt; 182 | } 183 | 184 | .navBar a:link, 185 | .navBar a:visited, 186 | { 187 | color: #FFFFFF; 188 | background: #3D3D3D url(../img/NavBarLink.gif) repeat-x top left; 189 | text-decoration: none; 190 | } 191 | 192 | .navBar a:hover, 193 | .currentLink a:link, 194 | .currentLink a:visited, 195 | .currentLink a:hover 196 | { 197 | color: #FFFFFF; 198 | background: #52ACEE url(../img/NavCurrentBarLink.gif) top left repeat-x; 199 | text-decoration: none; 200 | } 201 | 202 | .currentLink a:link, 203 | .currentLink a:visited, 204 | .currentLink a:hover 205 | { 206 | font-weight: bold; 207 | } 208 | 209 | .logon_spacing 210 | { 211 | height: 1.5em; 212 | } 213 | 214 | .CTX_ContentTitleHeader 215 | { 216 | font-family: Segoe UI, Tahoma,Verdana, Helvetica, Arial, sans-serif; 217 | font-size: 12pt; 218 | font-weight: bold; 219 | margin: 0; 220 | color: #000000 221 | } 222 | 223 | body 224 | { 225 | color: white; 226 | /* 227 | background: black url(../img/MarginGradient.gif) repeat-x top left; 228 | */ 229 | background: white repeat-x top left; 230 | margin: 0px; 231 | padding: 0px; 232 | font-family: Segoe UI, Tahoma,Verdana, Helvetica, Arial, sans-serif; 233 | font-size: 70%; 234 | text-align: center; 235 | height: 100%; 236 | } 237 | 238 | .mainPane 239 | { 240 | margin: 0; 241 | padding: 0; 242 | color: #FFFFFF; 243 | background: #003C96 url(../img/CenterBlueBkg.jpg) repeat top left; 244 | left:0; 245 | right:0; 246 | border-top: 2px #999999 solid; 247 | border-bottom: 2px #999999 solid; 248 | } 249 | 250 | .mainPanePadding 251 | { 252 | padding: 20px; 253 | } 254 | 255 | #loadingMainPane { 256 | margin: 0; 257 | padding-top: 50px; 258 | height: 100%; 259 | background: transparent url(../img/ProgressWindow.gif) no-repeat top center; 260 | } 261 | #loadingMainPanePNG { 262 | margin: 0; 263 | padding-top: 50px; 264 | height: 100%; 265 | background: transparent url(../img/ProgressWindow.png) no-repeat top center; 266 | } 267 | 268 | #appMainPane 269 | { 270 | padding: 7px 20px 40px 20px; 271 | } 272 | 273 | #commonMainPane 274 | { 275 | padding: 20px; 276 | } 277 | 278 | div#commonBoxTop 279 | { 280 | background: transparent url(../img/TitleHeaderCarbon.gif) repeat top left; 281 | height: 5px; 282 | border: solid 1px #999999; 283 | border-top: none; 284 | } 285 | 286 | #commonBox 287 | { 288 | border: solid 1px #999999; 289 | background-color: #FFF; 290 | color: black; 291 | padding: 0; 292 | } 293 | 294 | #commonBox a, 295 | #commonBox a:link, 296 | #commonBox a:visited 297 | { 298 | color: #3F3F3F; 299 | text-decoration:underline; 300 | } 301 | 302 | #commonBox a:hover 303 | { 304 | color: #3F3F3F; 305 | text-decoration: underline; 306 | } 307 | 308 | .commonInnerBox 309 | { 310 | padding: 0 10px 10px 20px; 311 | } 312 | 313 | div#commonBoxFoot 314 | { 315 | border: solid 1px #999999; 316 | background-color: white; 317 | height: 5px; 318 | } 319 | 320 | .messagesScreen 321 | { 322 | background-color: #FFF; 323 | color: #000; 324 | padding-left: 20px; 325 | padding-right: 20px; 326 | padding-top: 20px; 327 | padding-bottom:32px; 328 | } 329 | 330 | #messagesContent ul 331 | { 332 | margin-bottom:10px; 333 | } 334 | 335 | .messagesScreen h2 336 | { 337 | margin: 7px 0 12px 0; 338 | padding: 3px 15px; 339 | background: #F0F6FB url(../img/TrailBackground.gif) repeat-x bottom left; 340 | border-top: solid 1px #BBC6D6; 341 | font-size:100%; 342 | font-weight: normal; 343 | } 344 | 345 | .messagesScreen h3 346 | { 347 | padding:0 0 0 10px; 348 | font-size:120%; 349 | margin: 0; 350 | background-repeat: no-repeat; 351 | background-position: left center; 352 | color: #012861; 353 | } 354 | 355 | .loginButtonText 356 | { 357 | text-decoration: none; 358 | color: White; 359 | } 360 | .loginButtonText a:link, 361 | .loginButtonText a:visited, 362 | .loginButtonText a:hover 363 | { 364 | text-decoration: none; 365 | } 366 | 367 | .CTX_CaxtonButton 368 | { 369 | height: 28px; 370 | width: 75px; 371 | font-family: Arial, Verdana, Helvetica, Sans-Serif; 372 | font-size: 8pt; 373 | color: White; 374 | cursor: default; 375 | border: 0px; 376 | background-image: url("../img/LoginButtonGlow.gif"); 377 | } 378 | 379 | .CTX_CaxtonButton_Hover 380 | { 381 | height: 28px; 382 | width: 75px; 383 | font-family: Arial, Verdana, Helvetica, Sans-Serif; 384 | font-size: 8pt; 385 | color: White; 386 | cursor: hand; 387 | border: 0px; 388 | background-image: url("../img/LoginButtonRolloverGlow.gif"); 389 | } 390 | 391 | .CTX_BlackButton 392 | { 393 | height: 22px; 394 | width: 17ex; 395 | font-family: Arial, Verdana, Helvetica, Sans-Serif; 396 | font-size: 8pt; 397 | color: White; 398 | cursor: default; 399 | border-bottom-style: solid; 400 | border-width: 1px; 401 | border-color: #5F5F5F; 402 | border-collapse: collapse; 403 | background-image: url("../img/BlackButton.gif"); 404 | background-repeat: repeat-x; 405 | } 406 | 407 | .CTX_BlackButton_Hover 408 | { 409 | height: 22px; 410 | width: 17ex; 411 | font-family: Arial, Verdana, Helvetica, Sans-Serif; 412 | font-size: 8pt; 413 | color: White; 414 | cursor: hand; 415 | border-bottom-style: solid; 416 | border-width: 1px; 417 | border-color: #ACACAC; 418 | border-collapse: collapse; 419 | background-image: url("../img/BlackButtonRollover.gif"); 420 | background-repeat: repeat-x; 421 | } 422 | 423 | .CTX_CaxtonButtonLink 424 | { 425 | height: 18px; 426 | font-family: Verdana, Arial, Helvetica, Sans-Serif; 427 | font-size: 11px; 428 | color: black; 429 | background-color: #d4d4d4; 430 | cursor: default; 431 | border: 0px; 432 | } 433 | 434 | .CTX_CaxtonButtonLink_Hover 435 | { 436 | height: 18px; 437 | font-family: Verdana, Arial, Helvetica, Sans-Serif; 438 | font-size: 11px; 439 | color: black; 440 | background-color: #d4d4d4; 441 | cursor: hand; 442 | border: 0px; 443 | text-decoration:underline; 444 | } 445 | } 446 | 447 | /* 448 | from Caxton 449 | */ 450 | 451 | /* 452 | .mainPane 453 | { 454 | color: white; 455 | background-color: #000000; 456 | border-bottom: none; 457 | padding: 0; 458 | overflow: auto; 459 | } 460 | */ 461 | 462 | #bottomPane 463 | { 464 | background-color: ffffff; 465 | } 466 | 467 | .simpleMainPane 468 | { 469 | border: none; 470 | } 471 | 472 | #usefulPane, 473 | #sysMessage 474 | { 475 | margin: 0 auto; 476 | } 477 | 478 | .titleHead, 479 | .titleGradient, 480 | .titleTail 481 | { 482 | background: none; 483 | margin: 0; 484 | padding: 0; 485 | height:auto; 486 | width:auto; 487 | } 488 | 489 | .messageTitle 490 | { 491 | font-size: 12pt; 492 | font-weight: bold; 493 | color: #000000; 494 | } 495 | 496 | .welcomeText 497 | { 498 | clear: left; 499 | width: auto; 500 | text-align: left; 501 | padding: 5px 0 10px 0; 502 | margin: 0; 503 | } 504 | 505 | .actionPane 506 | { 507 | background: transparent url(../img/LoginIcon.gif) no-repeat 10px 8px; 508 | margin:0; 509 | padding:0; 510 | padding-top:6px; 511 | padding-left:100px; 512 | } 513 | 514 | .actionPanePng 515 | { 516 | background: transparent url(../img/LoginIcon.png) no-repeat 10px 0; 517 | margin:0; 518 | padding:0; 519 | padding-top:6px; 520 | padding-left:100px; 521 | } 522 | 523 | .actionpane_min_height 524 | { 525 | min-height: 80px; 526 | height: auto !important; 527 | height: 80px; 528 | } 529 | 530 | .loginForm 531 | { 532 | text-align: left; 533 | } 534 | .loginForm label 535 | { 536 | text-align: right; 537 | } 538 | .loginForm input, 539 | .loginForm select 540 | { 541 | margin-left: 0.5em; 542 | text-align: left; 543 | } 544 | .loginTypeOptionEntries 545 | { 546 | width: 28.75ex; 547 | } 548 | .loginEntries 549 | { 550 | width: 28ex; 551 | } 552 | .loginTreeEntry 553 | { 554 | color: #000000; 555 | background-color: #A7A7A7; 556 | 557 | width: 28ex; 558 | 559 | } 560 | 561 | .dockRight 562 | { 563 | clear:both; 564 | float:right; 565 | margin:4px 0px; 566 | } 567 | #accountSS a:link, 568 | #accountSS a:visited, 569 | #accountSS a:hover 570 | { 571 | text-decoration:underline; 572 | } 573 | 574 | .loginButtonPane 575 | { 576 | position:relative; 577 | text-align:right; 578 | overflow:hidden; 579 | margin: 0px; 580 | padding:0px; 581 | border: 0px; 582 | height:5ex; 583 | 584 | width: 42.5ex; 585 | } 586 | #accountSS { 587 | height:auto; 588 | } 589 | .loginButtonPane a:link, 590 | .loginButtonPane a:visited, 591 | .loginButtonPane a:hover 592 | { 593 | text-decoration:none; 594 | } 595 | 596 | #loginButtonBg 597 | { 598 | vertical-align:top; 599 | border:0px; 600 | padding:0px; 601 | margin:0px; 602 | width: 15ex; 603 | height: 5ex; 604 | z-index: -1; 605 | float: right; 606 | } 607 | 608 | #loginButtonWrapper 609 | { 610 | text-align:center; 611 | display:block; 612 | margin:0px; 613 | padding:0px; 614 | border:0px; 615 | line-height:5ex; 616 | position: relative; 617 | right: -15ex; 618 | width: 15ex; 619 | height: 5ex; 620 | z-index: 1; 621 | cursor:pointer; 622 | float: right; 623 | } 624 | 625 | td.glowBoxLeft { 626 | width:40px 627 | } 628 | td.glowBoxRight { 629 | width:40px 630 | } 631 | td.glowBoxTop { 632 | height:40px 633 | } 634 | td.glowBoxFooter { 635 | height:40px 636 | } 637 | td.glowBoxMid { 638 | padding: 7px 15px 15px 15px; 639 | background-repeat: repeat-x; 640 | background-image:url(../img/LoginPaneCenterMidGlow.gif); 641 | } 642 | td.glowBoxTopLeft { 643 | background-position:bottom right; 644 | background-repeat:no-repeat; 645 | background-image:url(../img/LoginPaneTopLeftBorderGlow.gif); 646 | } 647 | td.glowBoxTopMid { 648 | background-position:bottom center; 649 | background-repeat:repeat-x; 650 | background-image:url(../img/LoginPaneTopMidBorderGlow.gif); 651 | } 652 | td.glowBoxTopRight { 653 | background-position:bottom left; 654 | background-repeat:no-repeat; 655 | background-image:url(../img/LoginPaneTopRightBorderGlow.gif); 656 | } 657 | td.glowBoxMidLeft { 658 | background-position:center right; 659 | background-repeat:repeat-y; 660 | background-image:url(../img/LoginPaneCenterLeftBorderGlow.gif); 661 | } 662 | td.glowBoxMidRight { 663 | background-position:center left; 664 | background-repeat:repeat-y; 665 | background-image:url(../img/LoginPaneCenterRightBorderGlow.gif); 666 | } 667 | td.glowBoxFooterLeft { 668 | background-position:top right; 669 | background-repeat:no-repeat; 670 | background-image:url(../img/LoginPaneFooterLeftBorderGlow.gif); 671 | } 672 | td.glowBoxFooterMid { 673 | background-position:top center; 674 | background-repeat:repeat-x; 675 | background-image:url(../img/LoginPaneFooterMidBorderGlow.gif); 676 | } 677 | td.glowBoxFooterRight { 678 | background-position:top left; 679 | background-repeat:no-repeat; 680 | background-image:url(../img/LoginPaneFooterRightBorderGlow.gif); 681 | } 682 | 683 | td.glowBoxMidPng { 684 | padding: 7px 15px 15px 15px; 685 | background-repeat: repeat-x; 686 | background-image:url(../img/LoginPaneCenterMidGlow.gif); 687 | } 688 | td.glowBoxTopLeftPng { 689 | background-position:bottom right; 690 | background-repeat:no-repeat; 691 | background-image:url(../img/LoginPaneTopLeftBorderGlow.gif); 692 | } 693 | td.glowBoxTopMidPng { 694 | background-position:bottom center; 695 | background-repeat:repeat-x; 696 | background-image:url(../img/LoginPaneTopMidBorderGlow.gif); 697 | } 698 | td.glowBoxTopRightPng { 699 | background-position:bottom left; 700 | background-repeat:no-repeat; 701 | background-image:url(../img/LoginPaneTopRightBorderGlow.gif); 702 | } 703 | td.glowBoxMidLeftPng { 704 | background-position:center right; 705 | background-repeat:repeat-y; 706 | background-image:url(../img/LoginPaneCenterLeftBorderGlow.gif); 707 | } 708 | td.glowBoxMidRightPng { 709 | background-position:center left; 710 | background-repeat:repeat-y; 711 | background-image:url(../img/LoginPaneCenterRightBorderGlow.gif); 712 | } 713 | td.glowBoxFooterLeftPng { 714 | background-position:top right; 715 | background-repeat:no-repeat; 716 | background-image:url(../img/LoginPaneFooterLeftBorderGlow.gif); 717 | } 718 | td.glowBoxFooterMidPng { 719 | background-position:top center; 720 | background-repeat:repeat-x; 721 | background-image:url(../img/LoginPaneFooterMidBorderGlow.gif); 722 | } 723 | td.glowBoxFooterRightPng { 724 | background-position:top left; 725 | background-repeat:no-repeat; 726 | background-image:url(../img/LoginPaneFooterRightBorderGlow.gif); 727 | } 728 | 729 | table.carbonBox { 730 | left:0; 731 | right:0; 732 | width: 100%; 733 | } 734 | .carbonBoxTop { 735 | padding-top: 30px; 736 | background: white url(../img/LoginCarbonFiberBgTop.gif) no-repeat bottom center; 737 | } 738 | .carbonBoxBottom { 739 | text-align:center; 740 | padding-top: 10px; 741 | padding-bottom: 14px; 742 | background: white url(../img/LoginCarbonFiberBgFooter.gif) no-repeat bottom center; 743 | } 744 | 745 | .loginTableMidWidth 746 | { 747 | width: 38em; 748 | } 749 | 750 | #feedbackArea 751 | { 752 | margin:0; 753 | left:0; 754 | right:0; 755 | text-align:center; 756 | } 757 | #feedbackArea.feedback 758 | { 759 | display: inline; 760 | width: 33.5em; 761 | } 762 | #feedbackArea.noFeedback 763 | { 764 | display: none; 765 | } 766 | 767 | div.feedbackStyleSuccess, 768 | div.feedbackStyleInfo, 769 | div.feedbackStyleWarning, 770 | div.feedbackStyleError 771 | { 772 | margin:0; 773 | left:0; 774 | right:0; 775 | max-width:none; 776 | text-align:left; 777 | 778 | width: 33.5em; 779 | } 780 | 781 | div.feedbackStyleSuccess, 782 | div.feedbackStyleInfo, 783 | div.feedbackStyleWarning, 784 | div.feedbackStyleError 785 | { 786 | color: black; 787 | padding-top: 8px; 788 | padding-right: 11px; 789 | padding-bottom: 8px; 790 | padding-left: 64px; 791 | font-size: 100%; 792 | max-width: 600px; 793 | } 794 | 795 | 796 | div.feedbackStyleSuccess a, 797 | div.feedbackStyleInfo a, 798 | div.feedbackStyleWarning a, 799 | div.feedbackStyleError a, 800 | div.feedbackStyleSuccess a:link, 801 | div.feedbackStyleInfo a:link, 802 | div.feedbackStyleWarning a:link, 803 | div.feedbackStyleError a:link, 804 | div.feedbackStyleSuccess a:visited, 805 | div.feedbackStyleInfo a:visited, 806 | div.feedbackStyleWarning a:visited, 807 | div.feedbackStyleError a:visited, 808 | div.feedbackStyleSuccess a:hover, 809 | div.feedbackStyleInfo a:hover, 810 | div.feedbackStyleWarning a:hover, 811 | div.feedbackStyleError a:hover 812 | { 813 | color: #1260D4; 814 | } 815 | 816 | 817 | div.feedbackStyleSuccess 818 | { 819 | background: #121212 url(../img/Tick32.gif) no-repeat 21px 8px; 820 | border: solid 1px #005707; 821 | float: left; 822 | color: #C5C5C5; 823 | } 824 | 825 | div.feedbackStyleInfo 826 | { 827 | background: #121212 url(../img/Info32.gif) no-repeat 21px 8px; 828 | border: solid 1px #579BE6; 829 | float: left; 830 | color: #C5C5C5; 831 | } 832 | 833 | div.feedbackStyleWarning 834 | { 835 | background: #121212 url(../img/WarningAlert32.gif) no-repeat 21px 8px; 836 | border: solid 1px #9C371A; 837 | float: left; 838 | color: #C5C5C5; 839 | } 840 | 841 | div.feedbackStyleError 842 | { 843 | background: #121212 url(../img/Error32.gif) no-repeat 21px 8px; 844 | border: solid 1px #820A0A; 845 | float: left; 846 | color: #C5C5C5; 847 | } 848 | 849 | .messageStyle 850 | { 851 | display: block; 852 | width: 33.5em; 853 | min-height: 32px; 854 | height: auto !important; 855 | height: 32px; 856 | } 857 | 858 | #usefulPane 859 | { 860 | width: 38em; 861 | } 862 | #sysMessage 863 | { 864 | width: 35em; 865 | padding: 10px 0 10px 0; 866 | } 867 | 868 | input.Apply_Cancel_OK 869 | { 870 | width: 12ex; 871 | } 872 | 873 | input.Install_Skip 874 | { 875 | width: 16ex; 876 | } 877 | 878 | .changePasswordNameColumn 879 | { 880 | width: 24ex; 881 | } 882 | 883 | .changePasswordPane 884 | { 885 | padding: 0; 886 | background: url(../img/GreyGradient.gif) repeat-y; 887 | background-position: 24ex 0; 888 | } 889 | 890 | .changePasswordButtonPaddingLeft 891 | { 892 | padding-left: 24ex; 893 | } 894 | 895 | .buttonPaddingTop 896 | { 897 | padding-top: 10px; 898 | } 899 | 900 | .topSolidBorder 901 | { 902 | border-top: 1px solid #9baac0; 903 | } 904 | 905 | .topDottedBorder 906 | { 907 | border-top: 1px dotted #9baac0; 908 | } 909 | 910 | .fadeLineSeparator 911 | { 912 | clear: both; 913 | width: 100%; 914 | height: 1px; 915 | background: #FFF url(../img/FadeLine.gif) no-repeat top left; 916 | } 917 | 918 | 919 | /* 920 | begin: for VPN choices page 921 | */ 922 | #VPN 923 | { 924 | /* 925 | width: 710px; 926 | */ 927 | width: 60em; 928 | } 929 | 930 | .VPNcell 931 | { 932 | /* 933 | float: left; 934 | */ 935 | /* 936 | width: 329px; 937 | */ 938 | width: 28em; 939 | min-height: 176px; 940 | height: auto !important; 941 | /* 942 | height: 176px; 943 | */ 944 | height: 16em; 945 | padding: 0px; 946 | } 947 | 948 | #VPN a 949 | { 950 | color: #000000; 951 | text-decoration: none; 952 | padding: 20px 20px 20px 120px; 953 | display: block; 954 | border: 1px solid white; 955 | /* 956 | width: 190px; 957 | */ 958 | min-height: 176px; 959 | height: auto !important; 960 | /* 961 | height: 176px; 962 | */ 963 | height: 16em; 964 | } 965 | 966 | #VPN a:link, 967 | #VPN a:visited, 968 | #VPN a:hover 969 | { 970 | text-decoration: none; 971 | } 972 | 973 | #VPN a:hover 974 | { 975 | border: 1px dotted silver; 976 | } 977 | 978 | #VPN a.AccessGatewayLink, 979 | #VPN a.AccessGatewayLink:link, 980 | #VPN a.AccessGatewayLink:visited 981 | { 982 | background: url(/vpns/images/AccessGateway_icon.png) no-repeat top left; 983 | } 984 | 985 | #VPN a.AccessGatewayLink:hover 986 | { 987 | background: url(/vpns/images/AccessGatewayHover_icon.png) no-repeat top left; 988 | } 989 | 990 | 991 | #VPN a.ActiveXLink, 992 | #VPN a.ActiveXLink:link, 993 | #VPN a.ActiveXLink:visited 994 | { 995 | background: url(/vpns/images/ActiveX_icon.png) no-repeat top left; 996 | } 997 | 998 | #VPN a.ActiveXLink:hover 999 | { 1000 | background: url(/vpns/images/ActiveXHover_icon.png) no-repeat top left; 1001 | } 1002 | 1003 | #VPN a.JAVALink, 1004 | #VPN a.JAVALink:link, 1005 | #VPN a.JAVALink:visited 1006 | { 1007 | background: url(/vpns/images/JAVA_icon.png) no-repeat top left; 1008 | } 1009 | 1010 | #VPN a.JavaLink:hover 1011 | { 1012 | background: url(/vpns/images/JAVAHover_icon.png) no-repeat top left; 1013 | } 1014 | 1015 | #VPN a.WebUILink, 1016 | #VPN a.WebUILink:link, 1017 | #VPN a.WebUILink:visited 1018 | { 1019 | background: url(/vpns/images/WebUI_icon.png) no-repeat top left; 1020 | } 1021 | 1022 | #VPN a.WebUILink:hover 1023 | { 1024 | background: url(/vpns/images/WebUIHover_icon.png) no-repeat top left; 1025 | } 1026 | 1027 | #VPN a.ClientlessLink, 1028 | #VPN a.ClientlessLink:link, 1029 | #VPN a.ClientlessLink:visited 1030 | { 1031 | background: url(/vpns/images/Clientless_icon.png) no-repeat top left; 1032 | } 1033 | 1034 | #VPN a.ClientlessLink:hover 1035 | { 1036 | background: url(/vpns/images/ClientlessHover_icon.png) no-repeat top left; 1037 | } 1038 | 1039 | #VPN a.LogoffLink, 1040 | #VPN a.LogoffLink:link, 1041 | #VPN a.LogoffLink:visited 1042 | { 1043 | background: url(/vpns/images/Logoff_icon.png) no-repeat top left; 1044 | } 1045 | 1046 | #VPN a.LogoffLink:hover 1047 | { 1048 | background: url(/vpns/images/LogoffHover_icon.png) no-repeat top left; 1049 | } 1050 | 1051 | .linkH4, 1052 | .linkP, 1053 | .linkBullet 1054 | { 1055 | display: block; 1056 | } 1057 | 1058 | .linkH4 1059 | { 1060 | font-size: 120%; 1061 | margin-bottom: 10px; 1062 | font-weight: bold; 1063 | } 1064 | 1065 | .linkP 1066 | { 1067 | padding-bottom: 5px; 1068 | } 1069 | 1070 | .linkBullet 1071 | { 1072 | background: transparent url(../img/BulletArrow.gif) no-repeat center left; 1073 | padding: 0 0 5px 15px; 1074 | 1075 | } 1076 | /* 1077 | end: for VPN choices page 1078 | */ 1079 | 1080 | .CTX_CaxtonButtonBar 1081 | { 1082 | height: 20px; 1083 | background-color: #d4d4d4; 1084 | } 1085 | 1086 | #tabularView 1087 | { 1088 | clear:both; 1089 | float:left; 1090 | width:100%; 1091 | margin: 0; 1092 | padding: 0; 1093 | border-top: 1px #BBC6D6 solid; 1094 | border-bottom: 1px #BBC6D6 solid; 1095 | } 1096 | #tabularView table 1097 | { 1098 | width:100%; 1099 | border-collapse: collapse; 1100 | } 1101 | 1102 | #tabularView .leftColumn { 1103 | width: 40%; 1104 | padding: 2px 0px 2px 20px; 1105 | vertical-align: top; 1106 | } 1107 | 1108 | #tabularView .descriptionColumn { 1109 | width: 55%; 1110 | padding: 2px 20px 2px 0; 1111 | } 1112 | 1113 | #tabularView .noLeftBorder { 1114 | padding-left:0px; 1115 | } 1116 | 1117 | #tabularView th 1118 | { 1119 | padding: 5px 25px; 1120 | color: #1C5492; 1121 | text-align: left; 1122 | background-color: #efefef; 1123 | } 1124 | 1125 | #tabularView table td 1126 | { 1127 | padding: 2px 20px; 1128 | vertical-align: top; 1129 | } 1130 | 1131 | #tabularView tr.row1 td 1132 | { 1133 | background-color: #F7F7F7; 1134 | color: black; 1135 | } 1136 | 1137 | #tabularView img 1138 | { 1139 | float: left; 1140 | padding-right: 5px; 1141 | } 1142 | 1143 | #tabularView p 1144 | { 1145 | margin: 0 10px 0 20px; 1146 | } 1147 | 1148 | #tabularView tr 1149 | { 1150 | padding-left: 20px; 1151 | } 1152 | 1153 | /* For kernel dialogue*/ 1154 | .dialogueForm 1155 | { 1156 | margin:0; 1157 | } 1158 | 1159 | .dialogueChallengeCell 1160 | { 1161 | text-align:left; 1162 | } 1163 | 1164 | .dialogueResponseCell 1165 | { 1166 | text-align:right; 1167 | } 1168 | 1169 | .dialogueSubmitCell 1170 | { 1171 | padding-top:10px; 1172 | text-align:right; 1173 | } 1174 | 1175 | .transferLogonButtonRow 1176 | { 1177 | text-align:center; 1178 | padding-left:20px; 1179 | } 1180 | -------------------------------------------------------------------------------- /CITRIX/error.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |