├── .gitignore ├── README.md ├── VERSION ├── generate_img.sh ├── rc.d └── programmedrucken ├── update_script └── www ├── PrintProgram.htm ├── PrintPrograms.fn ├── druckansicht.css ├── druckansicht_ShortScripts.css ├── exec.cgi ├── exec1.cgi ├── functions.js ├── printprograms.htm ├── session.tcl ├── style.css └── update-check.cgi /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tar.gz 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hm-print 2 | A fork of the HomeMatic CCU Addon "ProgrammeDrucken" from https://homematic-forum.de/forum/viewtopic.php?f=41&t=19296 3 | 4 | # Installation 5 | :warning: Any previous version must be uninstalled manually before installing the new version. 6 | 7 | ## Supported CCU models 8 | * [HomeMatic CCU3](https://www.eq-3.de/produkte/homematic/zentralen-und-gateways/smart-home-zentrale-ccu3.html) / [RaspberryMatic](http://raspberrymatic.de/) 9 | * [HomeMatic CCU2](https://www.eq-3.de/produkt-detail-zentralen-und-gateways/items/homematic-zentrale-ccu-2.html) 10 | * HomeMatic CCU1 11 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.6 2 | -------------------------------------------------------------------------------- /generate_img.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mkdir -p tmp/addon/ 3 | cp -a update_script tmp/ 4 | cp -a rc.d tmp/ 5 | cp -a www tmp/ 6 | cp -a VERSION tmp/addon/ 7 | cd tmp 8 | chmod +x update_script 9 | 10 | [ -f /usr/sbin/dot_clean ] && dot_clean . 11 | 12 | COPYFILE_DISABLE=1 tar --owner=root --group=root --exclude=.DS_Store -czvf ../hm-print-$(cat ../VERSION).tar.gz * 13 | 14 | cd .. 15 | rm -rf tmp 16 | -------------------------------------------------------------------------------- /rc.d/programmedrucken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homematic-community/hm-print/a94dc0b4f26f9d23b14e5c06b30dfbca337f63da/rc.d/programmedrucken -------------------------------------------------------------------------------- /update_script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | RC_DIR=/usr/local/etc/config/rc.d 4 | WWW_DIR=/usr/local/etc/config/addons/www/print 5 | ADDON_DIR=/usr/local/etc/config/addons/print 6 | 7 | # check for unsupported platforms 8 | if grep -qim1 busmatic /www/api/methods/ccu/downloadFirmware.tcl; then 9 | exit 13 10 | fi 11 | 12 | # mount /usr/local if not already mounted 13 | mount | grep /usr/local 2>&1 >/dev/null 14 | if [ $? -eq 1 ]; then 15 | mount /usr/local 16 | fi 17 | 18 | # Startscript anlegen 19 | cp -af rc.d/programmedrucken ${RC_DIR}/ 20 | chmod +x ${RC_DIR}/programmedrucken 21 | 22 | # Web-Konfiguration anlegen 23 | mkdir -p ${WWW_DIR} 24 | cp -af www/* ${WWW_DIR} 25 | chmod 755 ${WWW_DIR} 26 | 27 | # Addon-Verzeichnis anlegen 28 | mkdir -p ${ADDON_DIR} 29 | cp -af addon/* ${ADDON_DIR} 30 | chmod 755 ${ADDON_DIR} 31 | 32 | # Symbolic Links 33 | rm -f ${WWW_DIR}/VERSION.txt 34 | ln -sf ${ADDON_DIR}/VERSION ${WWW_DIR}/VERSION.txt 35 | rm -f ${WWW_DIR}/addon 36 | ln -sf ${ADDON_DIR} ${WWW_DIR}/addon 37 | 38 | # sync filesystem to make sure all changes are written to disk 39 | sync 40 | 41 | if [ "$1" = "HM-RASPBERRYMATIC" ]; then 42 | /etc/config/rc.d/programmedrucken start 43 | fi 44 | -------------------------------------------------------------------------------- /www/PrintProgram.htm: -------------------------------------------------------------------------------- 1 | <% 2 | if( action == "PrintDevPara" ) { Call("PrintPrograms.fn::PrintProgram()"); } 3 | if( action == "PrintAllDV" ) { Call("PrintPrograms.fn::PrintProgram()"); } 4 | if( action == "PrintProgram" ) { Call("PrintPrograms.fn::PrintProgram()"); } 5 | if( action == "GetAllPrograms" ) { Call("PrintPrograms.fn::GetAllPrograms()"); } 6 | if( action == "GetAllSysPrograms" ) { Call("PrintPrograms.fn::GetAllSysPrograms()"); } 7 | if( action == "LoadRule" ) { Call("PrintPrograms.fn::LoadRule()"); } 8 | %> -------------------------------------------------------------------------------- /www/PrintPrograms.fn: -------------------------------------------------------------------------------- 1 | function ::PrintProgram() 2 | { 3 | if( system.IsVar("tmpPrgIDAL") ) 4 | { 5 | object pid = dom.GetObject( system.GetVar("tmpPrgIDAL") ); 6 | object oPrg = dom.GetObject(pid); 7 | if(prg) 8 | { 9 | object oR = dom.GetObject(oPrg.Rule().ID()); 10 | if (oR) 11 | { 12 | var subruleex = true; 13 | if (subruleex) 14 | { 15 | string id = oR.ID(); 16 | object oSR = oR.RuleSubRule(); 17 | if (oSR) { 18 | subruleex = true; 19 | oR = oSR; 20 | } else { 21 | subruleex = false; 22 | } 23 | #inc("/esp/rule.inc"); 24 | } 25 | } 26 | } 27 | } 28 | } 29 | 30 | function ::GetAllPrograms() 31 | { 32 | string s_prgID; 33 | object oPrg; 34 | var i = 0; 35 | foreach (s_prgID, dom.GetObject(ID_PROGRAMS).EnumUsedIDs()) { 36 | object oPrg = dom.GetObject(s_prgID); 37 | Write("|" # s_prgID # "\n" # oPrg.Name() # "\n" # oPrg.PrgInfo() # "\n" # oPrg.Internal() # "\n" # oPrg.Rule().ID()); 38 | i = i + 1; 39 | if (i == 1000) { 40 | quit; 41 | } 42 | } 43 | } 44 | 45 | function ::GetAllSysPrograms() 46 | { 47 | string s_prgID; 48 | object oPrg; 49 | var i = 0; 50 | foreach (s_prgID, dom.GetObject(ID_PROGRAMS).EnumIDs()) { 51 | object oPrg = dom.GetObject(s_prgID); 52 | Write("|" # s_prgID # "\n" # oPrg.Name() # "\n" # oPrg.PrgInfo() # "\n" # oPrg.Internal() # "\n" # oPrg.Rule().ID()); 53 | i = i + 1; 54 | if (i == 1000) { 55 | quit; 56 | } 57 | } 58 | } 59 | 60 | function ::LoadRule() 61 | { 62 | if( system.IsVar("pid") && system.IsVar("rid") ) 63 | { 64 | object oR = dom.GetObject( system.GetVar("rid") ); 65 | if( oR ) 66 | { 67 | object oSR = oR.RuleSubRule(); 68 | if( oSR ) 69 | { 70 | Write( "false|"#oSR.ID() ); 71 | } 72 | else 73 | { 74 | Write( "true" ); 75 | } 76 | Write("|" # system.GetVar("pid") # "|"); 77 | string id = oR.ID(); 78 | #inc("/esp/rule.inc"); 79 | } 80 | else 81 | { 82 | Write( "error" ); 83 | } 84 | } 85 | return; 86 | } -------------------------------------------------------------------------------- /www/druckansicht.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Verdana,Tahoma,Arial,Helvetica,sans-serif !important; 3 | font-size: 12px !important; 4 | } 5 | html, body { 6 | background-color: #ffffff; 7 | color: white; 8 | margin: 0; 9 | padding: 0; 10 | width: 29.7cm; 11 | } 12 | p { 13 | margin-bottom: 10px; 14 | margin-top: 10px; 15 | } 16 | ol { 17 | margin-bottom: 10px; 18 | margin-top: 10px; 19 | } 20 | ul { 21 | margin-bottom: 10px; 22 | margin-top: 10px; 23 | } 24 | ul ul { 25 | margin-bottom: 0; 26 | margin-top: 0; 27 | } 28 | a img { 29 | border: 0 none; 30 | } 31 | pre{ 32 | line-height: 20px; 33 | margin-left: 30px; 34 | background-color: #FFF7AA; 35 | max-width: 28.7cm; 36 | white-space: pre-wrap; /* css-3 */ 37 | white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 38 | white-space: -pre-wrap; /* Opera 4-6 */ 39 | white-space: -o-pre-wrap; /* Opera 7 */ 40 | word-wrap: break-word; /* Internet Explorer 5.5+ */ 41 | } 42 | 43 | #navbar { 44 | background-color: #182C6E; 45 | border-bottom: 5px solid white; 46 | margin: 0; 47 | width: 100%; 48 | } 49 | #content { 50 | background-color: #182C6E; 51 | height: 70%; 52 | overflow: auto; 53 | } 54 | #header { 55 | background-color: #182C6E; 56 | color: #000000; 57 | height: 15%; 58 | } 59 | #footer { 60 | background-color: #182C6E; 61 | border-top: 5px solid white; 62 | color: #000000; 63 | height: 15%; 64 | } 65 | #login_content { 66 | padding-top: 20px; 67 | } 68 | #LoginMask { 69 | background-color: #9BA6BF; 70 | color: #000000; 71 | font-weight: bold; 72 | text-align: center; 73 | width: 200px; 74 | } 75 | #LoginMask input { 76 | margin: 0; 77 | padding: 0; 78 | width: 200px; 79 | } 80 | #UserName { 81 | color: white; 82 | vertical-align: top; 83 | } 84 | #PagePath { 85 | color: white; 86 | vertical-align: bottom; 87 | } 88 | #PagePath span { 89 | cursor: pointer; 90 | } 91 | #contentLeft { 92 | vertical-align: top; 93 | } 94 | #contentRight { 95 | border-left: 10px solid white; 96 | vertical-align: top; 97 | } 98 | #separator { 99 | background-color: white; 100 | color: white; 101 | height: 5px; 102 | width: 100%; 103 | } 104 | #ButtonTable td { 105 | background-color: #5D6373; 106 | cursor: pointer; 107 | height: 40px; 108 | text-align: center; 109 | } 110 | #tblStatus { 111 | height: 100%; 112 | table-layout: fixed; 113 | width: 1200px; 114 | } 115 | #tblStatus td { 116 | background-color: #9BA6BF; 117 | color: #000000; 118 | vertical-align: top; 119 | } 120 | #chkCell { 121 | background-color: white; 122 | } 123 | #tblListFold { 124 | background-color: #182C6E; 125 | } 126 | #chnListBody td { 127 | } 128 | #chnListBody th { 129 | } 130 | .clickable { 131 | cursor: pointer; 132 | } 133 | .DesktopLabel { 134 | background-color: #C0C0C0; 135 | border: 1px solid #000000; 136 | font-weight: bold; 137 | margin-left: 3px; 138 | margin-right: 3px; 139 | margin-top: 3px; 140 | text-align: center; 141 | width: auto; 142 | } 143 | .SmallLogo { 144 | margin-left: 0; 145 | margin-top: 6px; 146 | } 147 | .SmallLogoLog { 148 | left: 18px; 149 | position: absolute; 150 | top: 12px; 151 | } 152 | .LargeLogo { 153 | left: 480px; 154 | position: absolute; 155 | top: 180px; 156 | } 157 | .Button { 158 | background-color: #5D6373; 159 | border: 1px solid #000000; 160 | color: white; 161 | cursor: pointer; 162 | font-weight: bold; 163 | height: 60px; 164 | line-height: 60px; 165 | margin-left: 1px; 166 | text-align: center; 167 | width: 200px; 168 | } 169 | .ButtonStatusRooms { 170 | background-color: #F0F0F0; 171 | border: 1px solid #000000; 172 | color: #000000; 173 | height: 100px; 174 | width: 100px; 175 | } 176 | .ButtonStatusRoomsSelected { 177 | background-color: #3678C9; 178 | border: 1px solid #000000; 179 | color: white; 180 | height: 100px; 181 | width: 100px; 182 | } 183 | .ButtonStatusRoomsPic { 184 | background-color: #F0F0F0; 185 | border: 1px solid #000000; 186 | height: 100px; 187 | text-align: center; 188 | width: 100px; 189 | } 190 | .ButtonStatusRoomsPicSelected { 191 | background-color: #3678C9; 192 | border: 1px solid #000000; 193 | color: white; 194 | height: 100px; 195 | text-align: center; 196 | width: 100px; 197 | } 198 | .filterTable { 199 | empty-cells: show; 200 | } 201 | .filterTable th { 202 | background-color: #5D6373; 203 | border: 1px solid #000000; 204 | height: 40px; 205 | text-align: center; 206 | } 207 | .filterTable td { 208 | border: 1px solid #000000; 209 | color: #000000; 210 | height: 40px; 211 | text-align: center; 212 | } 213 | .ButtonLargeFont { 214 | height: 80px; 215 | line-height: 40px; 216 | } 217 | .HeaderTitle { 218 | color: white; 219 | font-weight: bold; 220 | } 221 | .NavButton { 222 | background-color: #5D6373; 223 | border: 1px solid #000000; 224 | color: white; 225 | cursor: pointer; 226 | font-weight: bold; 227 | height: 42px; 228 | line-height: 42px; 229 | text-align: center; 230 | width: 130px; 231 | } 232 | .NavButton2 { 233 | background-color: #5D6373; 234 | border: 1px solid #000000; 235 | color: white; 236 | cursor: pointer; 237 | font-weight: bold; 238 | height: 42px; 239 | line-height: 21px; 240 | text-align: center; 241 | width: 130px; 242 | } 243 | .NavButtonSelected { 244 | background-color: #3678C9; 245 | border: 1px solid #000000; 246 | color: white; 247 | cursor: pointer; 248 | font-weight: bold; 249 | height: 42px; 250 | line-height: 42px; 251 | text-align: center; 252 | vertical-align: middle; 253 | width: 130px; 254 | } 255 | .NavButtonSelected2 { 256 | background-color: #3678C9; 257 | border: 1px solid #000000; 258 | color: white; 259 | cursor: pointer; 260 | font-weight: bold; 261 | height: 42px; 262 | line-height: 21px; 263 | text-align: center; 264 | vertical-align: middle; 265 | width: 140px; 266 | } 267 | .Messages { 268 | background-color: #5D6373; 269 | border: 1px solid #000000; 270 | color: white; 271 | font-weight: bold; 272 | text-align: center; 273 | width: 250px; 274 | } 275 | .Messages_Selected { 276 | background-color: #3678C9; 277 | } 278 | .StdTable { 279 | height: 100%; 280 | width: 100%; 281 | } 282 | .StdTable td { 283 | background-color: #9BA6BF; 284 | color: #000000; 285 | text-align: left; 286 | vertical-align: top; 287 | } 288 | .StdTableBtn { 289 | background-color: #5D6373; 290 | border: 1px solid #000000; 291 | color: white; 292 | cursor: pointer; 293 | height: 70px; 294 | line-height: 70px; 295 | margin: 5px; 296 | overflow: hidden; 297 | text-align: center; 298 | } 299 | .StdTableBtn2 { 300 | background-color: #5D6373; 301 | border: 1px solid #000000; 302 | color: white; 303 | cursor: pointer; 304 | height: 70px; 305 | line-height: 35px; 306 | margin: 5px; 307 | overflow: hidden; 308 | text-align: center; 309 | } 310 | .HeaderBg { 311 | background-color: #9BA6BF; 312 | color: #000000; 313 | height: 30px; 314 | white-space: nowrap; 315 | width: 100%; 316 | } 317 | .borderBottomHist { 318 | border-bottom: 1px solid #000000; 319 | } 320 | .divLog { 321 | color: #000000; 322 | height: 75%; 323 | overflow: auto; 324 | width: 100%; 325 | } 326 | .tblList { 327 | empty-cells: show; 328 | margin-top: 20px; 329 | width: 100%; 330 | } 331 | .tblList th { 332 | background-color: #5D6373; 333 | color: white; 334 | font-weight: normal; 335 | } 336 | .Sort { 337 | cursor: pointer; 338 | height: 100%; 339 | text-align: center; 340 | vertical-align: middle; 341 | } 342 | .SortSelected { 343 | background-color: #3678C9; 344 | cursor: pointer; 345 | height: 100%; 346 | text-align: center; 347 | vertical-align: middle; 348 | } 349 | .pt11 { 350 | padding-top: 11px; 351 | } 352 | .tblList td { 353 | color: #000000; 354 | height: 25px; 355 | text-align: center; 356 | vertical-align: middle; 357 | } 358 | .popupTitle { 359 | background-color: white; 360 | border: 1px solid #000000; 361 | color: #000000; 362 | padding-left: 4px; 363 | width: 99.4%; 364 | } 365 | * html .popupTitle { 366 | background-color: white; 367 | border: 1px solid #000000; 368 | color: #000000; 369 | padding-left: 4px; 370 | width: 100%; 371 | } 372 | .popupTable { 373 | background-color: #5D6373; 374 | border: 1px solid #000000; 375 | color: white; 376 | empty-cells: show; 377 | font-weight: normal; 378 | text-align: center; 379 | vertical-align: middle; 380 | width: 100%; 381 | } 382 | .popupTableScript { 383 | border: 1px solid #000000; 384 | color: white; 385 | empty-cells: show; 386 | font-weight: normal; 387 | text-align: center; 388 | vertical-align: middle; 389 | width: 100%; 390 | } 391 | .popupTableRow { 392 | border-bottom: 1px solid #5D6373; 393 | border-top: 1px solid #5D6373; 394 | } 395 | .scriptButton { 396 | background-color: #5D6373; 397 | border: 1px solid #000000; 398 | color: white; 399 | text-align: center; 400 | width: 10%; 401 | } 402 | .popupWhiteCells { 403 | background-color: white; 404 | color: #000000; 405 | font-weight: normal; 406 | } 407 | .popupWhiteCells { 408 | cursor: pointer; 409 | } 410 | .popupGrayCells { 411 | background-color: #9BA6BF; 412 | color: #000000; 413 | font-weight: normal; 414 | } 415 | .popupControls { 416 | background-color: white; 417 | border: 1px solid #000000; 418 | width: 100%; 419 | } 420 | .popupControls div { 421 | background-color: #5D6373; 422 | border: 1px solid #000000; 423 | color: white; 424 | cursor: pointer; 425 | font-weight: bold; 426 | text-align: center; 427 | vertical-align: middle; 428 | } 429 | .helpViewer { 430 | background-color: white; 431 | color: #000000; 432 | height: 100%; 433 | width: 100%; 434 | } 435 | .ChnListTbl { 436 | background-color: #000000; 437 | width: 100%; 438 | } 439 | .ChnListTbl td { 440 | background-color: #F0F0F0; 441 | color: #000000; 442 | height: 50px; 443 | } 444 | .ChnListNav { 445 | background-color: #5D6373; 446 | color: white; 447 | font-weight: normal; 448 | height: 30px; 449 | } 450 | .ChnListNavSelected { 451 | background-color: #3678C9; 452 | color: white; 453 | font-weight: normal; 454 | height: 30px; 455 | } 456 | .FilterBtn { 457 | cursor: pointer; 458 | height: 100%; 459 | width: 100%; 460 | } 461 | .FilterBtnActive { 462 | background-color: #3678C9; 463 | } 464 | .FilterSubMenu { 465 | background-color: #9BA6BF; 466 | border: 1px solid #000000; 467 | color: white; 468 | overflow: auto; 469 | position: absolute; 470 | z-index: 500; 471 | } 472 | .FilterSubMenu td { 473 | background-color: #9BA6BF; 474 | border: medium none; 475 | color: white; 476 | height: 15px; 477 | } 478 | .FilterSetButton { 479 | background-color: #5D6373; 480 | border: 1px solid #000000; 481 | color: white; 482 | cursor: pointer; 483 | margin-bottom: 6px; 484 | margin-left: 5px; 485 | margin-right: 5px; 486 | width: 90%; 487 | z-index: 501; 488 | } 489 | .ControlBtnOff { 490 | -moz-border-bottom-colors: none; 491 | -moz-border-left-colors: none; 492 | -moz-border-right-colors: none; 493 | -moz-border-top-colors: none; 494 | background-color: #5D6373; 495 | border-color: #5D6373 #5D6373 #000000 #000000; 496 | border-image: none; 497 | border-style: inset inset solid solid; 498 | border-width: 4px 4px 1px 1px; 499 | color: white; 500 | font-weight: bold; 501 | text-align: center; 502 | } 503 | .ControlBtnOn { 504 | -moz-border-bottom-colors: none; 505 | -moz-border-left-colors: none; 506 | -moz-border-right-colors: none; 507 | -moz-border-top-colors: none; 508 | background-color: #3678C9; 509 | border-color: #3678C9 #3678C9 #000000 #000000; 510 | border-image: none; 511 | border-style: inset inset solid solid; 512 | border-width: 4px 4px 1px 1px; 513 | color: white; 514 | font-weight: bold; 515 | text-align: center; 516 | } 517 | .PercBtn { 518 | -moz-border-bottom-colors: none; 519 | -moz-border-left-colors: none; 520 | -moz-border-right-colors: none; 521 | -moz-border-top-colors: none; 522 | background-color: #5D6373; 523 | border-color: #5D6373 #5D6373 #000000 #000000; 524 | border-image: none; 525 | border-style: inset inset solid solid; 526 | border-width: 4px 4px 1px 1px; 527 | color: white; 528 | font-weight: bold; 529 | height: 96px; 530 | text-align: center; 531 | width: 96px; 532 | } 533 | .ControlBtnInfo { 534 | background-color: #5D6373; 535 | border: 1px solid #000000; 536 | color: white; 537 | font-weight: bold; 538 | padding: 5px; 539 | } 540 | .ControlBtnPushed { 541 | -moz-border-bottom-colors: none; 542 | -moz-border-left-colors: none; 543 | -moz-border-right-colors: none; 544 | -moz-border-top-colors: none; 545 | background-color: #5D6373; 546 | border-color: #FFFF00 #FFFF00 #000000 #000000; 547 | border-image: none; 548 | border-style: inset inset solid solid; 549 | border-width: 4px 4px 1px 1px; 550 | color: #000000; 551 | font-weight: bold; 552 | text-align: center; 553 | } 554 | #id_progressbar_wrapper { 555 | background-color: #F0F0F0; 556 | color: #000000; 557 | } 558 | .popupTableRowGray { 559 | background-color: #9BA6BF; 560 | border-bottom: 1px solid #5D6373; 561 | border-top: 1px solid #5D6373; 562 | color: #000000; 563 | margin: 0; 564 | } 565 | .popupTableRowWhite { 566 | background-color: white; 567 | border-bottom: 1px solid #5D6373; 568 | border-top: 1px solid #5D6373; 569 | color: #000000; 570 | margin: 0; 571 | } 572 | .popupTableHeaderRow { 573 | background-color: gray; 574 | border: 1px solid black; 575 | color: white; 576 | margin: 0; 577 | } 578 | .popupTableHeaderRow th { 579 | background-color: gray; 580 | color: white; 581 | margin: 0; 582 | } 583 | .popupTableHeaderRow td { 584 | background-color: gray; 585 | color: white; 586 | margin: 0; 587 | } 588 | .StdButton { 589 | background-color: #5D6373; 590 | border: 1px solid #000000; 591 | color: white; 592 | cursor: pointer; 593 | } 594 | .StdButtonInactive { 595 | background-color: #F0F0F0; 596 | border: 1px solid gray; 597 | color: white; 598 | } 599 | .TestButton { 600 | background-color: #5D6373; 601 | border: 1px solid #000000; 602 | color: white; 603 | cursor: pointer; 604 | margin: 5px; 605 | text-align: center; 606 | } 607 | .TestButtonDisabled { 608 | background-color: #F0F0F0; 609 | border: 1px solid gray; 610 | color: white; 611 | cursor: default; 612 | margin: 5px; 613 | text-align: center; 614 | } 615 | .OkButton { 616 | background-color: #00C300; 617 | border: 1px solid #000000; 618 | color: #000000; 619 | font-weight: bold; 620 | text-align: center; 621 | width: 100%; 622 | } 623 | .OkButtonRunning { 624 | background-color: #FFFF00; 625 | border: 1px solid #000000; 626 | color: #000000; 627 | font-weight: bold; 628 | text-align: center; 629 | width: 100%; 630 | } 631 | .TestDate { 632 | border-bottom: 1px solid #000000; 633 | border-top: 1px solid #000000; 634 | margin-bottom: 2px; 635 | margin-top: 2px; 636 | } 637 | .FooterButton { 638 | background-color: #0048FF; 639 | border: 1px solid #000000; 640 | color: white; 641 | cursor: pointer; 642 | font-weight: bold; 643 | display: none; 644 | } 645 | .FooterButtonLarge { 646 | background-color: #5D6373; 647 | border: 1px solid #000000; 648 | color: white; 649 | cursor: pointer; 650 | font-weight: bold; 651 | height: 15px; 652 | line-height: 18px; 653 | width: 40px; 654 | } 655 | .TblHeaderUserConfig { 656 | background-color: #5D6373; 657 | border: 1px solid #000000; 658 | color: white; 659 | height: 50px; 660 | text-align: center; 661 | } 662 | .TblFilterUserConfig { 663 | background-color: #5D6373; 664 | border: 1px solid #000000; 665 | color: white; 666 | height: 20px; 667 | text-align: center; 668 | } 669 | .TblUserConfig { 670 | background-color: #9BA6BF; 671 | border: 1px solid #000000; 672 | color: #000000; 673 | text-align: center; 674 | } 675 | .tblUserData td { 676 | color: #000000; 677 | } 678 | .TblUserAdministration { 679 | background-color: #9BA6BF; 680 | border: 1px solid #000000; 681 | color: #000000; 682 | text-align: center; 683 | } 684 | .StatViewTbl { 685 | empty-cells: show; 686 | } 687 | .StatViewTbl td { 688 | border: 1px solid #000000; 689 | } 690 | .ChannelStatusTbl { 691 | background-color: #9BA6BF; 692 | border: 1px solid #000000; 693 | color: #000000; 694 | empty-cells: show; 695 | height: 100px; 696 | text-align: center; 697 | } 698 | .picDiv { 699 | height: 50px; 700 | margin: 0; 701 | padding: 0; 702 | position: relative; 703 | width: 50px; 704 | } 705 | .ChannelTblPopup { 706 | background-color: #9BA6BF; 707 | border: 1px solid #000000; 708 | color: #000000; 709 | height: 60px; 710 | text-align: center; 711 | } 712 | .SysVarsTblPopup { 713 | background-color: #9BA6BF; 714 | color: #000000; 715 | height: 60px; 716 | text-align: center; 717 | } 718 | .WhiteBkgChannelPopup { 719 | background-color: white; 720 | border: 1px solid #000000; 721 | color: #000000; 722 | empty-cells: show; 723 | height: 60px; 724 | text-align: center; 725 | } 726 | .RoomFuncChooser { 727 | background-color: #9BA6BF; 728 | color: #000000; 729 | } 730 | .RoomFuncChooser td { 731 | color: #000000; 732 | } 733 | .SelectBox { 734 | background-color: #5D6373; 735 | border: 1px solid #000000; 736 | color: white; 737 | } 738 | .BigFont { 739 | font-weight: bold; 740 | } 741 | .Rule { 742 | line-height: 18px; 743 | background-color: #ffffff; 744 | border: 1px solid #000000; 745 | padding: 4px; 746 | text-align: left; 747 | width: 29.7cm; 748 | 749 | } 750 | .Condition { 751 | background-color: #d4ffe5; 752 | border: 1px solid #000000; 753 | padding: 4px; 754 | text-align: left; 755 | } 756 | .tHeaderCell { 757 | background-color: #5D6373; 758 | border: 1px solid #000000; 759 | color: white; 760 | height: 40px; 761 | padding: 4px; 762 | text-align: left; 763 | vertical-align: middle; 764 | } 765 | .tSubHeaderCell { 766 | background-color: #5D6373; 767 | border: 1px solid #000000; 768 | color: white; 769 | height: 20px; 770 | padding: 4px; 771 | text-align: center; 772 | vertical-align: middle; 773 | } 774 | .tHeaderCellSort { 775 | background-color: #3678C9; 776 | border: 1px solid #000000; 777 | color: white; 778 | cursor: pointer; 779 | height: 100%; 780 | padding: 4px; 781 | text-align: center; 782 | vertical-align: middle; 783 | } 784 | .tHeaderCellSortSelected { 785 | background-color: #3678C9; 786 | border: 1px solid #000000; 787 | color: white; 788 | cursor: pointer; 789 | height: 100%; 790 | padding: 4px; 791 | text-align: center; 792 | vertical-align: middle; 793 | } 794 | .tBodyCell { 795 | background-color: #F0F0F0; 796 | border: 1px solid #000000; 797 | color: #000000; 798 | height: 40px; 799 | padding: 4px; 800 | text-align: left; 801 | } 802 | .tTable { 803 | border: 1px solid #000000; 804 | empty-cells: show; 805 | margin-left: 10px; 806 | margin-right: 10px; 807 | margin-top: 10px; 808 | text-align: center; 809 | width: 97%; 810 | } 811 | .taCenter { 812 | text-align: center; 813 | } 814 | .viewTbl { 815 | background-color: #F0F0F0; 816 | border: medium none; 817 | } 818 | .ctrlTbl { 819 | background-color: white; 820 | border: medium none; 821 | } 822 | .ctrlTbl td { 823 | background-color: inherit; 824 | border: medium none; 825 | color: white; 826 | height: auto; 827 | } 828 | div.table { 829 | border-collapse: collapse; 830 | display: table; 831 | } 832 | div.tr { 833 | display: table-row; 834 | } 835 | div.td { 836 | display: table-cell; 837 | } 838 | div.thead { 839 | display: table-header-group; 840 | } 841 | div.tbody { 842 | display: table-row-group; 843 | } 844 | div.tfoot { 845 | display: table-footer-group; 846 | } 847 | div.col { 848 | display: table-column; 849 | } 850 | div.colgroup { 851 | display: table-column-group; 852 | } 853 | div.th { 854 | display: table-cell; 855 | } 856 | div.caption { 857 | display: table-caption; 858 | } 859 | .tMain { 860 | border: 1px solid #000000; 861 | margin-left: 20px; 862 | margin-top: 20px; 863 | } 864 | .tHeader { 865 | background-color: #5D6373; 866 | border: 1px solid #000000; 867 | color: white; 868 | empty-cells: show; 869 | height: 40px; 870 | } 871 | .tFilter { 872 | background-color: #5D6373; 873 | border: 1px solid #000000; 874 | color: white; 875 | empty-cells: show; 876 | height: auto; 877 | text-align: center; 878 | } 879 | .tClick { 880 | cursor: pointer; 881 | } 882 | .tCell { 883 | background-color: #9BA6BF; 884 | border: 1px solid #000000; 885 | color: #000000; 886 | empty-cells: show; 887 | text-align: center; 888 | } 889 | .bcWhitePic { 890 | background-color: white; 891 | } 892 | .bcWhite { 893 | background-color: #F0F0F0; 894 | } 895 | .loginErrorBox { 896 | background-color: #9BA6BF; 897 | border: 4px solid red; 898 | color: #000000; 899 | font-weight: bold; 900 | margin: 10px; 901 | padding: 12px; 902 | } 903 | .tMoveUp { 904 | background-image: url("/img/btn_fav_up.png"); 905 | background-position: center center; 906 | background-repeat: no-repeat; 907 | cursor: pointer; 908 | height: 38px; 909 | text-align: center; 910 | vertical-align: middle; 911 | width: 85px; 912 | } 913 | .tMoveDown { 914 | background-image: url("/img/btn_fav_down.png"); 915 | background-position: center center; 916 | background-repeat: no-repeat; 917 | cursor: pointer; 918 | height: 38px; 919 | text-align: center; 920 | vertical-align: middle; 921 | width: 85px; 922 | } 923 | .oLine { 924 | background-color: #182C6E; 925 | border-bottom: 5px solid white; 926 | height: 6px; 927 | width: 90%; 928 | } 929 | .sysConfigHeight { 930 | height: 363px; 931 | } 932 | .posPreBtn { 933 | background-color: #5D6373; 934 | border: 1px solid #000000; 935 | color: white; 936 | float: left; 937 | height: 15px; 938 | margin: 2px; 939 | padding: 2px; 940 | text-align: center; 941 | width: 30px; 942 | } 943 | .brClear { 944 | clear: both; 945 | } 946 | .tButton { 947 | background-color: #5D6373; 948 | border: 1px solid #000000; 949 | color: white; 950 | cursor: pointer; 951 | height: 30px; 952 | text-align: center; 953 | width: 200px; 954 | } 955 | .thCell { 956 | background-color: #5D6373; 957 | border: 1px solid #000000; 958 | color: white; 959 | height: 40px; 960 | padding: 2px; 961 | text-align: center; 962 | } 963 | .tdCellFilter { 964 | background-color: #5D6373; 965 | border: 1px solid #000000; 966 | color: white; 967 | height: 20px; 968 | text-align: center; 969 | } 970 | .WhiteBkgPic { 971 | background-color: white; 972 | color: #000000; 973 | } 974 | .WhiteBkg { 975 | background-color: #F0F0F0; 976 | color: #000000; 977 | } 978 | .GrayBkg { 979 | background-color: #9BA6BF; 980 | color: #000000; 981 | } 982 | .OUCFMprop { 983 | color: #000000; 984 | padding-left: 4px; 985 | text-align: left; 986 | } 987 | .OUCFMcenter { 988 | color: #000000; 989 | text-align: center; 990 | } 991 | #ic_deviceparameters #id_body { 992 | background-color: #182C6E; 993 | margin-top: 10px; 994 | } 995 | #ic_deviceparameters #id_firmware_table { 996 | width: 100%; 997 | } 998 | #ic_deviceparameters #id_firmware_table tr td { 999 | border: 0 none; 1000 | } 1001 | #ic_deviceparameters #DeviceInformation { 1002 | border: 1px solid #000000; 1003 | color: white; 1004 | width: 99%; 1005 | } 1006 | #ic_deviceparameters #DeviceInformation thead { 1007 | background-color: #5D6373; 1008 | text-align: center; 1009 | } 1010 | #ic_deviceparameters #DeviceInformation tbody { 1011 | background-color: #F0F0F0; 1012 | color: #000000; 1013 | } 1014 | #ic_deviceparameters #DeviceInformation td { 1015 | border: 1px solid #000000; 1016 | } 1017 | #ic_deviceparameters #DeviceInformation #DeviceImage { 1018 | background-color: white; 1019 | height: 56px; 1020 | margin: 0; 1021 | padding: 0; 1022 | width: 52px; 1023 | } 1024 | #ic_deviceparameters .parameter_area { 1025 | background-color: #182C6E; 1026 | color: white; 1027 | margin-bottom: 0; 1028 | margin-top: 0; 1029 | padding-top: 0; 1030 | } 1031 | #ic_deviceparameters .parameter_header { 1032 | color: white; 1033 | margin: 2px; 1034 | padding: 2px; 1035 | width: 100%; 1036 | } 1037 | #ic_deviceparameters .parameter_header thead tr { 1038 | height: 50px; 1039 | } 1040 | #ic_deviceparameters .parameter_area .parameters_table { 1041 | border: 1px solid #000000; 1042 | color: white; 1043 | width: 99%; 1044 | } 1045 | #ic_deviceparameters .parameter_area .parameters_table thead { 1046 | background-color: #5D6373; 1047 | text-align: center; 1048 | } 1049 | #ic_deviceparameters .parameter_area .parameters_table tbody { 1050 | background-color: #9BA6BF; 1051 | color: #000000; 1052 | } 1053 | #ic_deviceparameters .parameter_area .parameters_table td { 1054 | border: 1px solid #000000; 1055 | height: 50px; 1056 | } 1057 | #ic_deviceparameters .parameter_area .parameters_table .ProfileTbl { 1058 | background-color: white; 1059 | border: 0 none; 1060 | height: auto; 1061 | } 1062 | #ic_deviceparameters .parameter_area .parameters_table .ProfileTbl thead { 1063 | background-color: white; 1064 | display: none; 1065 | height: auto; 1066 | visibility: hidden; 1067 | } 1068 | #ic_deviceparameters .parameter_area .parameters_table .ProfileTbl tbody tr td { 1069 | background-color: white; 1070 | border: 0 none; 1071 | height: auto; 1072 | padding: 2px; 1073 | } 1074 | #ic_deviceparameters #Timeouts_Area .TimeoutTable { 1075 | background-color: white; 1076 | border: 0 none; 1077 | border-collapse: collapse; 1078 | height: auto; 1079 | margin: 6px; 1080 | } 1081 | #ic_deviceparameters #Timeouts_Area .TimeoutTable thead td { 1082 | background-color: white; 1083 | border: 0 none; 1084 | color: #000000; 1085 | height: auto; 1086 | text-align: right; 1087 | } 1088 | #ic_deviceparameters #Timeouts_Area .TimeoutTable thead td { 1089 | background-color: white; 1090 | border: 0 none; 1091 | height: auto; 1092 | padding-bottom: 6px; 1093 | text-align: center; 1094 | } 1095 | #ic_deviceparameters #Timeouts_Area .TimeoutTable tbody td { 1096 | background-color: white; 1097 | border: 0 none; 1098 | height: auto; 1099 | padding: 1px 10px; 1100 | } 1101 | #ic_linkpeerlist #head_wrapper { 1102 | border-bottom: 0 none; 1103 | margin: 0; 1104 | padding: 0; 1105 | } 1106 | #ic_linkpeerlist #foot_wrapper { 1107 | border-top: 0 none; 1108 | margin: 0; 1109 | padding: 0; 1110 | } 1111 | #ic_linkpeerlist #body_wrapper { 1112 | background-color: #182C6E; 1113 | margin: 0; 1114 | padding: 0; 1115 | width: 100%; 1116 | } 1117 | #ic_linkpeerlist .LinkListTbl { 1118 | border: 1px solid #000000; 1119 | empty-cells: show; 1120 | height: auto; 1121 | margin: 20px 0 0; 1122 | padding: 0; 1123 | width: 100%; 1124 | } 1125 | #ic_linkpeerlist .LinkListTbl td { 1126 | background-color: #F0F0F0; 1127 | border: 1px solid #000000; 1128 | color: #000000; 1129 | height: 50px; 1130 | text-align: center; 1131 | } 1132 | #ic_linkpeerlist .LinkListTbl th { 1133 | border: 1px solid #000000; 1134 | } 1135 | #ic_linkpeerlist .LinkListTbl thead th { 1136 | background-color: #5D6373; 1137 | border: 1px solid #000000; 1138 | color: white; 1139 | cursor: pointer; 1140 | font-weight: normal; 1141 | margin: 0; 1142 | } 1143 | #ic_linkpeerlist .LinkListTbl thead td { 1144 | background-color: #5D6373; 1145 | color: white; 1146 | margin: 0; 1147 | } 1148 | #ic_linkpeerlist .LinkListTbl .header_active { 1149 | background-color: #3678C9; 1150 | } 1151 | #ic_linkpeerlist .LinkListTbl .LinkListTbl_img { 1152 | background-color: white; 1153 | height: 80px; 1154 | text-align: left; 1155 | } 1156 | #modalbox #id_messagebox { 1157 | background-color: #000000; 1158 | height: auto; 1159 | left: 0; 1160 | position: absolute; 1161 | top: 0; 1162 | width: 100%; 1163 | z-index: 90; 1164 | } 1165 | #messagebox #id_messagebox { 1166 | background-color: #F0F0F0; 1167 | color: #000000; 1168 | height: auto; 1169 | left: 50%; 1170 | margin-left: -320px; 1171 | margin-top: -240px; 1172 | position: absolute; 1173 | top: 50%; 1174 | width: 400px; 1175 | z-index: 91; 1176 | } 1177 | #messagebox #id_messagebox table { 1178 | border-collapse: collapse; 1179 | color: #000000; 1180 | height: auto; 1181 | margin: 5px 0; 1182 | width: 100%; 1183 | } 1184 | #messagebox #id_messagebox table th { 1185 | background-color: #5D6373; 1186 | border: 1px solid #000000; 1187 | color: white; 1188 | } 1189 | #messagebox #id_messagebox td { 1190 | background-color: #9BA6BF; 1191 | border: 1px solid #000000; 1192 | } 1193 | #messagebox #id_messagebox tr { 1194 | text-align: center; 1195 | vertical-align: middle; 1196 | } 1197 | #messagebox #id_messagebox td.awbtn { 1198 | background-color: #F0F0F0; 1199 | height: 40px; 1200 | } 1201 | #ic_selchannel #previous_step_wrapper { 1202 | background-color: #182C6E; 1203 | margin: 20px; 1204 | } 1205 | #ic_selchannel #createLinkStep1 { 1206 | border: 1px solid #000000; 1207 | color: white; 1208 | width: 90%; 1209 | } 1210 | #ic_selchannel #createLinkStep1 thead { 1211 | background-color: #5D6373; 1212 | } 1213 | #ic_selchannel #createLinkStep1 tbody { 1214 | background-color: #F0F0F0; 1215 | color: #000000; 1216 | } 1217 | #ic_selchannel #createLinkStep1 td { 1218 | border: 1px solid #000000; 1219 | } 1220 | #ic_selchannel #createLinkStep1 .BlueHeader { 1221 | background-color: #3678C9; 1222 | } 1223 | #ic_selchannel #createLinkStep1 .WhiteHeader { 1224 | background-color: white; 1225 | } 1226 | #ic_selchannel #createLinkStep1 .WhiteHeader input { 1227 | width: 100%; 1228 | } 1229 | #ic_selchannel .ChnListTbl { 1230 | background-color: #182C6E; 1231 | border: 1px solid #000000; 1232 | } 1233 | #ic_selchannel .ChnListTbl tr td { 1234 | border: 1px solid #000000; 1235 | } 1236 | #ic_selchannel .ChnListTbl tbody tr td { 1237 | border: 1px solid #000000; 1238 | height: 56px; 1239 | } 1240 | #ic_selchannel .ChnListTbl .filterBox { 1241 | background-color: #9BA6BF; 1242 | border: 1px solid #000000; 1243 | color: white; 1244 | left: 0; 1245 | padding: 5px; 1246 | position: relative; 1247 | text-align: right; 1248 | top: 0; 1249 | visibility: hidden; 1250 | width: auto; 1251 | z-index: 9999; 1252 | } 1253 | #ic_selchannel .ChnListTbl .filterBox table td { 1254 | background-color: #9BA6BF; 1255 | border: 0 none; 1256 | color: white; 1257 | height: auto; 1258 | margin: 0; 1259 | padding: 0; 1260 | width: auto; 1261 | } 1262 | #ic_selchannel .ChnListTbl a { 1263 | color: white; 1264 | } 1265 | #ic_selchannel .ChnListTbl img { 1266 | border: 0 none; 1267 | } 1268 | #ic_selchannel .ChnListTbl .chnListTbl_Caption { 1269 | background-color: #5D6373; 1270 | color: white; 1271 | height: auto; 1272 | padding: 6px; 1273 | text-align: center; 1274 | } 1275 | #ic_selchannel .ChnListTbl .sorted { 1276 | background-color: #3678C9; 1277 | color: white; 1278 | cursor: pointer; 1279 | } 1280 | #ic_selchannel .ChnListTbl .unsorted { 1281 | background-color: #5D6373; 1282 | color: white; 1283 | cursor: pointer; 1284 | } 1285 | #ic_selchannel .ChnListTbl .nosort { 1286 | background-color: #5D6373; 1287 | color: white; 1288 | } 1289 | #ic_selchannel .ChnListTbl .unsorted img { 1290 | visibility: hidden; 1291 | } 1292 | #ic_selchannel .ChnListTbl .filtered { 1293 | background-color: #3678C9; 1294 | color: white; 1295 | cursor: pointer; 1296 | height: auto; 1297 | } 1298 | #ic_selchannel .ChnListTbl .unfiltered { 1299 | background-color: #5D6373; 1300 | color: white; 1301 | cursor: pointer; 1302 | height: auto; 1303 | } 1304 | #ic_selchannel .ChnListTbl .nofilter { 1305 | background-color: #5D6373; 1306 | color: white; 1307 | height: auto; 1308 | } 1309 | #ic_selchannel .ChnListTbl .filtered a { 1310 | color: white; 1311 | } 1312 | #ic_selchannel .ChnListTbl .filtered a img { 1313 | border: 0 none; 1314 | } 1315 | #ic_selchannel .ChnListTbl .unfiltered a img { 1316 | visibility: hidden; 1317 | } 1318 | #ic_selchannel #body_wrapper { 1319 | background-color: #182C6E; 1320 | margin-top: 10px; 1321 | } 1322 | #ic_selchannel .ChnListTbl .virtual_key_hidden { 1323 | border: 1px solid #000000; 1324 | display: none; 1325 | visibility: hidden; 1326 | } 1327 | #ic_selchannel .ChnListTbl .virtual_key_visible { 1328 | border: 1px solid #000000; 1329 | } 1330 | #ic_selchannel .ChnListTbl .chnListTbl_dev_img { 1331 | background-color: white; 1332 | height: 50px; 1333 | text-align: left; 1334 | } 1335 | #ic_selchannel .ChnListTbl #chnListFoot tr td { 1336 | background-color: #5D6373; 1337 | color: white; 1338 | height: auto; 1339 | } 1340 | #ic_setprofiles .SetProfLinkTbl { 1341 | border: 1px solid #000000; 1342 | color: white; 1343 | margin-bottom: 0; 1344 | margin-top: 0; 1345 | width: 99%; 1346 | } 1347 | #ic_setprofiles .SetProfLinkTbl thead { 1348 | background-color: #5D6373; 1349 | text-align: center; 1350 | } 1351 | #ic_setprofiles .SetProfLinkTbl tbody { 1352 | background-color: #9BA6BF; 1353 | color: #000000; 1354 | } 1355 | #ic_setprofiles .SetProfLinkTbl .BlueHeader { 1356 | background-color: #3678C9; 1357 | } 1358 | #ic_setprofiles .SetProfLinkTbl .WhiteHeader { 1359 | background-color: #F0F0F0; 1360 | } 1361 | #ic_setprofiles .SetProfLinkTbl .WhiteHeader input { 1362 | width: 100%; 1363 | } 1364 | #ic_setprofiles .SetProfLinkTbl td { 1365 | border: 1px solid #000000; 1366 | } 1367 | #ic_setprofiles .SetProfLinkTbl .SetProfLinkTbl_Buttons { 1368 | border: 0 none; 1369 | color: white; 1370 | margin: 0; 1371 | padding: 0; 1372 | width: 100%; 1373 | } 1374 | #ic_setprofiles .SetProfLinkTbl .SetProfLinkTbl_Buttons td { 1375 | border: 0 none; 1376 | } 1377 | #ic_setprofiles .SetProfLinkTbl .ProfileTbl { 1378 | background-color: transparent; 1379 | border: 0 none; 1380 | color: #000000; 1381 | height: auto; 1382 | margin: 0; 1383 | text-align: left; 1384 | vertical-align: top; 1385 | width: auto; 1386 | } 1387 | #ic_setprofiles .SetProfLinkTbl .ProfileTbl thead { 1388 | background-color: transparent; 1389 | height: auto; 1390 | text-align: left; 1391 | } 1392 | #ic_setprofiles .SetProfLinkTbl .ProfileTbl thead tr { 1393 | height: auto; 1394 | } 1395 | #ic_setprofiles .SetProfLinkTbl .ProfileTbl tbody { 1396 | background-color: transparent; 1397 | color: #000000; 1398 | } 1399 | #ic_setprofiles .SetProfLinkTbl .ProfileTbl td { 1400 | border: 0 none; 1401 | } 1402 | #ic_setprofiles .SetProfLinkTbl .easymode_wrapper { 1403 | } 1404 | #ic_setprofiles #body_wrapper { 1405 | background-color: #182C6E; 1406 | margin-top: 10px; 1407 | } 1408 | #ic_setprofiles #id_sender_group_receiver_profiles_wrapper { 1409 | background-color: #182C6E; 1410 | margin-top: 10px; 1411 | } 1412 | #ic_neweasymode #id_body { 1413 | background-color: white; 1414 | border-left: 1px solid #000000; 1415 | border-right: 1px solid #000000; 1416 | color: #000000; 1417 | height: 100%; 1418 | overflow: auto; 1419 | padding: 5px 2px 2px; 1420 | width: 100%; 1421 | } 1422 | .pname_color { 1423 | color: windowtext; 1424 | } 1425 | .translated { 1426 | color: windowtext; 1427 | } 1428 | .attention { 1429 | color: red; 1430 | font-weight: bold; 1431 | } 1432 | .track { 1433 | background-color: #9BA6BF; 1434 | cursor: pointer; 1435 | height: 0.5em; 1436 | position: relative; 1437 | width: 20em; 1438 | z-index: 0; 1439 | } 1440 | .handle { 1441 | background-color: #5D6373; 1442 | cursor: e-resize; 1443 | height: 1em; 1444 | position: absolute; 1445 | top: -0.25em; 1446 | width: 1em; 1447 | z-index: 1; 1448 | } 1449 | html, body { 1450 | margin: 0; 1451 | padding: 0; 1452 | } 1453 | .thumbnail { 1454 | height: 50px; 1455 | position: relative; 1456 | width: 50px; 1457 | } 1458 | #canvas { 1459 | display: none; 1460 | } 1461 | .RFConfig_InterfacesTable { 1462 | border: 1px solid #000000; 1463 | } 1464 | .RFConfig_InterfacesTable th { 1465 | background-color: #5D6373; 1466 | color: white; 1467 | font-weight: bold; 1468 | text-align: center; 1469 | vertical-align: middle; 1470 | } 1471 | .RFConfig_InterfacesTable_tr { 1472 | background-color: #F0F0F0; 1473 | } 1474 | .RFConfig_InterfacesTable_tr_hover { 1475 | background-color: #9BA6BF; 1476 | cursor: pointer; 1477 | } 1478 | .RFConfig_InterfacesTable td { 1479 | color: #000000; 1480 | text-align: center; 1481 | vertical-align: middle; 1482 | } 1483 | .Filter { 1484 | background-color: #5D6373; 1485 | border: 1px solid #000000; 1486 | color: white; 1487 | font-weight: bold; 1488 | margin: 0; 1489 | padding: 0; 1490 | text-align: left; 1491 | vertical-align: middle; 1492 | } 1493 | .Filter_Active { 1494 | background-color: #3678C9; 1495 | border: 1px solid #000000; 1496 | color: white; 1497 | font-weight: bold; 1498 | margin: 0; 1499 | padding: 0; 1500 | text-align: left; 1501 | vertical-align: middle; 1502 | } 1503 | .FilterCaption { 1504 | cursor: pointer; 1505 | height: 20px; 1506 | text-align: center; 1507 | width: 100%; 1508 | } 1509 | .FilterBodyWrapper { 1510 | position: absolute; 1511 | z-index: 500; 1512 | } 1513 | .FilterBody { 1514 | background-color: #9BA6BF; 1515 | border: 1px solid #000000; 1516 | color: white; 1517 | left: 5px; 1518 | margin: 0; 1519 | padding: 5px; 1520 | position: relative; 1521 | top: -5px; 1522 | } 1523 | .FilterBodyCell { 1524 | background-color: #9BA6BF; 1525 | border: 0 none; 1526 | color: white; 1527 | font-weight: normal; 1528 | height: 15px; 1529 | } 1530 | .FilterText { 1531 | margin: 3px 2%; 1532 | width: 96%; 1533 | } 1534 | .FilterButton { 1535 | background-color: #5D6373; 1536 | border: 1px solid #000000; 1537 | color: white; 1538 | cursor: pointer; 1539 | font-weight: normal; 1540 | margin: 3px 2%; 1541 | text-align: center; 1542 | vertical-align: middle; 1543 | width: 96%; 1544 | } 1545 | .DialogLayer { 1546 | background-image: url("/ise/img/tr50.gif"); 1547 | height: 100%; 1548 | overflow: hidden; 1549 | position: absolute; 1550 | width: 100%; 1551 | } 1552 | .LayoutContainer { 1553 | border: 0 none; 1554 | height: 100%; 1555 | left: 0; 1556 | margin: 0; 1557 | overflow: hidden; 1558 | padding: 0; 1559 | position: absolute; 1560 | top: 0; 1561 | width: 100%; 1562 | } 1563 | .DialogContainer { 1564 | background-image: url("/ise/img/tr50.gif"); 1565 | border: 0 none; 1566 | height: 100%; 1567 | left: 0; 1568 | margin: 0; 1569 | overflow: hidden; 1570 | padding: 0; 1571 | position: absolute; 1572 | top: 0; 1573 | width: 100%; 1574 | } 1575 | .DialogBoxWrapper { 1576 | background-image: url("/ise/img/tr50.gif"); 1577 | height: 100%; 1578 | position: absolute; 1579 | width: 100%; 1580 | } 1581 | .DialogBox { 1582 | background-color: #000000; 1583 | position: absolute; 1584 | } 1585 | .DialogBoxTitle { 1586 | background-color: white; 1587 | color: #000000; 1588 | position: absolute; 1589 | text-indent: 5px; 1590 | } 1591 | .DialogBoxContent { 1592 | background-color: white; 1593 | color: #000000; 1594 | position: absolute; 1595 | } 1596 | .DialogBoxFooter { 1597 | background-color: white; 1598 | position: absolute; 1599 | } 1600 | .DialogButton { 1601 | background-color: #000000; 1602 | float: left; 1603 | } 1604 | .DialogButtonCaption { 1605 | background-color: #5D6373; 1606 | color: white; 1607 | cursor: pointer; 1608 | text-align: center; 1609 | } 1610 | #menubar { 1611 | background-color: #182C6E; 1612 | border-bottom: 5px solid white; 1613 | height: 34px; 1614 | padding: 2px; 1615 | width: 100%; 1616 | z-index: 189; 1617 | } 1618 | .MainMenuItem_Left { 1619 | background-color: #182C6E; 1620 | border-right: 2px solid white; 1621 | cursor: pointer; 1622 | float: left; 1623 | height: 30px; 1624 | } 1625 | .MainMenuItem_Right { 1626 | background-color: #182C6E; 1627 | border-left: 2px solid white; 1628 | cursor: pointer; 1629 | float: right; 1630 | height: 30px; 1631 | } 1632 | .MainMenuItem_Highlight { 1633 | background-color: #9BA6BF; 1634 | } 1635 | .MainMenuItem_Selected { 1636 | background-color: #3678C9; 1637 | } 1638 | .MainMenuItemCaption { 1639 | color: white; 1640 | cursor: pointer; 1641 | font-weight: bold; 1642 | line-height: 30px; 1643 | padding-left: 5px; 1644 | padding-right: 5px; 1645 | text-align: center; 1646 | vertical-align: middle; 1647 | } 1648 | .MainMenuSubMenu { 1649 | background-color: #5D6373; 1650 | border: 1px solid #000000; 1651 | overflow: hidden; 1652 | position: absolute; 1653 | z-index: 189; 1654 | } 1655 | .MainMenuSubItem { 1656 | color: white; 1657 | cursor: pointer; 1658 | font-weight: bold; 1659 | line-height: 20px; 1660 | padding-left: 5px; 1661 | padding-right: 5px; 1662 | text-align: left; 1663 | vertical-align: middle; 1664 | white-space: nowrap; 1665 | } 1666 | .MainMenuSubItem_Highlight { 1667 | background-color: #9BA6BF; 1668 | } 1669 | #webuiloader_wrapper { 1670 | height: 100%; 1671 | width: 100%; 1672 | } 1673 | #webuilaoder_background { 1674 | background-color: #000000; 1675 | height: 80px; 1676 | left: 50%; 1677 | margin-left: -209px; 1678 | margin-top: -55px; 1679 | position: relative; 1680 | top: 50%; 1681 | width: 418px; 1682 | } 1683 | #webuilaoder { 1684 | background-color: #F0F0F0; 1685 | height: 76px; 1686 | left: 2px; 1687 | position: absolute; 1688 | top: 2px; 1689 | width: 414px; 1690 | } 1691 | #webuiloader_icon { 1692 | left: 5px; 1693 | position: absolute; 1694 | top: 10px; 1695 | } 1696 | #webuiloader_caption { 1697 | color: #000000; 1698 | height: 50px; 1699 | left: 65px; 1700 | line-height: 50px; 1701 | position: absolute; 1702 | top: 10px; 1703 | } 1704 | #ChannelChooserWrapper { 1705 | background-image: url("/ise/img/tr50.gif"); 1706 | height: 100%; 1707 | overflow: hidden; 1708 | position: absolute; 1709 | width: 100%; 1710 | } 1711 | #ChannelChooserDialog { 1712 | background-color: #000000; 1713 | height: 600px; 1714 | left: 50%; 1715 | margin-left: -500px; 1716 | margin-top: -300px; 1717 | position: relative; 1718 | top: 50%; 1719 | width: 1000px; 1720 | } 1721 | #ChannelChooserTitle { 1722 | background-color: white; 1723 | color: #000000; 1724 | cursor: pointer; 1725 | font-weight: bold; 1726 | height: 20px; 1727 | left: 2px; 1728 | line-height: 20px; 1729 | position: absolute; 1730 | text-indent: 5px; 1731 | top: 2px; 1732 | vertical-align: middle; 1733 | width: 996px; 1734 | } 1735 | #ChannelChooserContent { 1736 | background-color: white; 1737 | height: 520px; 1738 | left: 2px; 1739 | overflow: scroll; 1740 | position: absolute; 1741 | top: 24px; 1742 | width: 996px; 1743 | } 1744 | #ChannelChooserFooter { 1745 | background-color: white; 1746 | height: 50px; 1747 | left: 2px; 1748 | position: absolute; 1749 | top: 548px; 1750 | width: 996px; 1751 | } 1752 | .ChannelChooserButton { 1753 | background-color: #5D6373; 1754 | border: 1px solid #000000; 1755 | cursor: pointer; 1756 | font-weight: bold; 1757 | height: 40px; 1758 | line-height: 40px; 1759 | overflow: hidden; 1760 | position: absolute; 1761 | text-align: center; 1762 | top: 4px; 1763 | vertical-align: middle; 1764 | } 1765 | #ChannelChooserAbortButton { 1766 | left: 4px; 1767 | width: 100px; 1768 | } 1769 | #ChannelChooserResetFiltersButton { 1770 | left: 791px; 1771 | width: 200px; 1772 | } 1773 | #ChannelChooserVirtualButton { 1774 | left: 566px; 1775 | width: 220px; 1776 | } 1777 | #ChannelChooserTable { 1778 | border: 1px solid #000000; 1779 | empty-cells: show; 1780 | height: auto; 1781 | margin: 0; 1782 | padding: 0; 1783 | width: 100%; 1784 | } 1785 | .ChannelChooserHead { 1786 | background-color: #5D6373; 1787 | border: 1px solid #000000; 1788 | color: white; 1789 | font-weight: bold; 1790 | height: 60px; 1791 | margin: 0; 1792 | padding: 0; 1793 | text-align: center; 1794 | vertical-align: middle; 1795 | } 1796 | .ChannelChooserHead_Active { 1797 | background-color: #3678C9; 1798 | border: 1px solid #000000; 1799 | color: white; 1800 | font-weight: bold; 1801 | height: 60px; 1802 | margin: 0; 1803 | padding: 0; 1804 | text-align: center; 1805 | vertical-align: middle; 1806 | } 1807 | .ChannelChooserRow { 1808 | background-color: #F0F0F0; 1809 | } 1810 | .ChannelChooserRow_Highlight { 1811 | background-color: #9BA6BF; 1812 | cursor: pointer; 1813 | } 1814 | .ChannelChooserCell { 1815 | border: 1px solid #000000; 1816 | color: #000000; 1817 | height: 50px; 1818 | text-align: center; 1819 | vertical-align: middle; 1820 | } 1821 | .ChannelChooserThumbnail { 1822 | background-color: white; 1823 | border: 1px solid #000000; 1824 | height: 80px; 1825 | text-align: left; 1826 | } 1827 | .ChannelChooserCell_Highlight { 1828 | background-color: #9BA6BF; 1829 | } 1830 | #MultiChannelChooserWrapper { 1831 | background-image: url("/ise/img/tr50.gif"); 1832 | height: 100%; 1833 | overflow: hidden; 1834 | position: absolute; 1835 | width: 100%; 1836 | } 1837 | #MultiChannelChooserDialog { 1838 | background-color: #000000; 1839 | height: 600px; 1840 | left: 50%; 1841 | margin-left: -500px; 1842 | margin-top: -300px; 1843 | position: relative; 1844 | top: 50%; 1845 | width: 1000px; 1846 | } 1847 | #MultiChannelChooserTitle { 1848 | background-color: white; 1849 | color: #000000; 1850 | cursor: pointer; 1851 | font-weight: bold; 1852 | height: 20px; 1853 | left: 2px; 1854 | line-height: 20px; 1855 | position: absolute; 1856 | text-indent: 5px; 1857 | top: 2px; 1858 | vertical-align: middle; 1859 | width: 996px; 1860 | } 1861 | #MultiChannelChooserContent { 1862 | background-color: white; 1863 | height: 520px; 1864 | left: 2px; 1865 | overflow: scroll; 1866 | position: absolute; 1867 | top: 24px; 1868 | width: 996px; 1869 | } 1870 | #MultiChannelChooserFooter { 1871 | background-color: white; 1872 | height: 50px; 1873 | left: 2px; 1874 | position: absolute; 1875 | top: 548px; 1876 | width: 996px; 1877 | } 1878 | .MultiChannelChooserButton { 1879 | background-color: #5D6373; 1880 | border: 1px solid #000000; 1881 | cursor: pointer; 1882 | font-weight: bold; 1883 | height: 40px; 1884 | line-height: 40px; 1885 | overflow: hidden; 1886 | position: absolute; 1887 | text-align: center; 1888 | top: 4px; 1889 | vertical-align: middle; 1890 | } 1891 | #MultiChannelChooserOkButton { 1892 | left: 4px; 1893 | width: 100px; 1894 | } 1895 | #MultiChannelChooserAbortButton { 1896 | left: 109px; 1897 | width: 100px; 1898 | } 1899 | #MultiChannelChooserResetFiltersButton { 1900 | left: 791px; 1901 | width: 200px; 1902 | } 1903 | #MultiChannelChooserVirtualButton { 1904 | left: 566px; 1905 | width: 220px; 1906 | } 1907 | #MultiChannelChooserTable { 1908 | border: 1px solid black; 1909 | empty-cells: show; 1910 | height: auto; 1911 | margin: 0; 1912 | padding: 0; 1913 | width: 100%; 1914 | } 1915 | .MultiChannelChooserHead { 1916 | background-color: #5D6373; 1917 | border: 1px solid black; 1918 | color: white; 1919 | font-weight: bold; 1920 | height: 60px; 1921 | margin: 0; 1922 | padding: 0; 1923 | text-align: center; 1924 | vertical-align: middle; 1925 | } 1926 | .MultiChannelChooserHead_Active { 1927 | background-color: #3678C9; 1928 | border: 1px solid black; 1929 | color: white; 1930 | font-weight: bold; 1931 | height: 60px; 1932 | margin: 0; 1933 | padding: 0; 1934 | text-align: center; 1935 | vertical-align: middle; 1936 | } 1937 | .MultiChannelChooserRow { 1938 | background-color: #F0F0F0; 1939 | } 1940 | .MultiChannelChooserRow_Highlight { 1941 | background-color: #9BA6BF; 1942 | } 1943 | .MultiChannelChooserCell { 1944 | border: 1px solid #000000; 1945 | color: #000000; 1946 | height: 50px; 1947 | text-align: center; 1948 | vertical-align: middle; 1949 | } 1950 | .MultiChannelChooserCell_Active { 1951 | background-color: white; 1952 | border: 1px solid #000000; 1953 | color: #000000; 1954 | height: 50px; 1955 | text-align: center; 1956 | vertical-align: middle; 1957 | } 1958 | .MultiChannelChooserThumbnail { 1959 | background-color: white; 1960 | border: 1px solid #000000; 1961 | height: 80px; 1962 | text-align: left; 1963 | } 1964 | #DeviceListTable { 1965 | border: 0 none; 1966 | empty-cells: show; 1967 | height: auto; 1968 | margin: 1%; 1969 | padding: 0; 1970 | width: 97%; 1971 | } 1972 | .DeviceListHead { 1973 | background-color: #5D6373; 1974 | border: 1px solid #000000; 1975 | color: white; 1976 | font-weight: bold; 1977 | height: 60px; 1978 | margin: 0; 1979 | padding: 0; 1980 | text-align: center; 1981 | vertical-align: middle; 1982 | } 1983 | .DeviceListHead_Active { 1984 | background-color: #3678C9; 1985 | border: 1px solid black; 1986 | color: white; 1987 | font-weight: bold; 1988 | height: 60px; 1989 | margin: 0; 1990 | padding: 0; 1991 | text-align: center; 1992 | vertical-align: middle; 1993 | } 1994 | .DeviceListFoot { 1995 | background-color: #5D6373; 1996 | border: 1px solid black; 1997 | color: white; 1998 | height: 3px; 1999 | line-height: 3px; 2000 | margin: 0; 2001 | padding: 0; 2002 | } 2003 | .DeviceListRow { 2004 | background-color: #F0F0F0; 2005 | } 2006 | .DeviceListRow_Highlight { 2007 | background-color: #9BA6BF; 2008 | cursor: pointer; 2009 | } 2010 | .DeviceListCell { 2011 | border: 1px solid #000000; 2012 | color: #000000; 2013 | height: 50px; 2014 | text-align: center; 2015 | vertical-align: middle; 2016 | } 2017 | .DeviceListCell_Invisible { 2018 | background-color: #182C6E; 2019 | border: 0 none; 2020 | cursor: default; 2021 | height: 50px; 2022 | width: 25px; 2023 | } 2024 | .DeviceListCell_Invisible img { 2025 | cursor: pointer; 2026 | float: left; 2027 | height: 16px; 2028 | width: 16px; 2029 | } 2030 | .DeviceListThumbnail { 2031 | background-color: white; 2032 | border: 1px solid #000000; 2033 | height: 80px; 2034 | text-align: left; 2035 | } 2036 | .DeviceListButton { 2037 | background-color: #5D6373; 2038 | border: 1px solid #000000; 2039 | color: white; 2040 | cursor: pointer; 2041 | font-weight: bold; 2042 | height: 20px; 2043 | line-height: 20px; 2044 | margin: 2%; 2045 | text-align: center; 2046 | vertical-align: middle; 2047 | width: 95%; 2048 | } 2049 | #ChannelConfigDialogLayer { 2050 | background-image: url("/ise/img/tr50.gif"); 2051 | height: 100%; 2052 | overflow: hidden; 2053 | position: absolute; 2054 | width: 100%; 2055 | } 2056 | #ChannelConfigDialog { 2057 | background-color: #000000; 2058 | height: 600px; 2059 | left: 50%; 2060 | margin-left: -400px; 2061 | margin-top: -300px; 2062 | position: relative; 2063 | top: 50%; 2064 | width: 800px; 2065 | } 2066 | #ChannelConfigDialogTitle { 2067 | background-color: white; 2068 | color: #000000; 2069 | cursor: pointer; 2070 | font-weight: bold; 2071 | height: 20px; 2072 | left: 2px; 2073 | line-height: 20px; 2074 | position: absolute; 2075 | text-indent: 5px; 2076 | top: 2px; 2077 | vertical-align: middle; 2078 | width: 796px; 2079 | } 2080 | #ChannelConfigDialogContent { 2081 | background-color: white; 2082 | color: #000000; 2083 | height: 520px; 2084 | left: 2px; 2085 | overflow: scroll; 2086 | position: absolute; 2087 | top: 24px; 2088 | width: 796px; 2089 | } 2090 | #ChannelConfigDialogFooter { 2091 | background-color: white; 2092 | height: 50px; 2093 | left: 2px; 2094 | position: absolute; 2095 | top: 548px; 2096 | width: 796px; 2097 | } 2098 | .ChannelConfigDialogButton { 2099 | background-color: #5D6373; 2100 | border: 1px solid #000000; 2101 | cursor: pointer; 2102 | font-weight: bold; 2103 | height: 40px; 2104 | line-height: 40px; 2105 | overflow: hidden; 2106 | position: absolute; 2107 | text-align: center; 2108 | top: 4px; 2109 | vertical-align: middle; 2110 | } 2111 | #ChannelConfigDialogOkButton { 2112 | left: 4px; 2113 | width: 100px; 2114 | } 2115 | #ChannelConfigDialogAbortButton { 2116 | left: 691px; 2117 | width: 100px; 2118 | } 2119 | #ChannelConfigDialogContentLeft { 2120 | left: 0; 2121 | margin: 5px; 2122 | overflow: hidden; 2123 | padding: 5px; 2124 | position: absolute; 2125 | top: 0; 2126 | width: 260px; 2127 | } 2128 | #ChannelConfigDialogContentMain { 2129 | left: 280px; 2130 | margin: 10px; 2131 | position: absolute; 2132 | top: 0; 2133 | width: 480px; 2134 | } 2135 | .ChannelConfigDialogSection { 2136 | color: #000000; 2137 | margin-bottom: 10px; 2138 | } 2139 | .ChannelConfigDialogTable { 2140 | color: #000000; 2141 | } 2142 | #ChannelConfigDialogTestButton { 2143 | background-color: #5D6373; 2144 | border: 1px solid #000000; 2145 | color: white; 2146 | cursor: pointer; 2147 | font-weight: bold; 2148 | height: 20px; 2149 | line-height: 20px; 2150 | text-align: center; 2151 | width: 120px; 2152 | } 2153 | #ChannelConfigDialogTestResult { 2154 | height: 20px; 2155 | line-height: 20px; 2156 | text-align: center; 2157 | width: 120px; 2158 | } 2159 | #DeviceConfigDialogLayer { 2160 | background-image: url("/ise/img/tr50.gif"); 2161 | height: 100%; 2162 | overflow: hidden; 2163 | position: absolute; 2164 | width: 100%; 2165 | } 2166 | #DeviceConfigDialog { 2167 | background-color: #000000; 2168 | height: 450px; 2169 | left: 50%; 2170 | margin-left: -400px; 2171 | margin-top: -225px; 2172 | position: relative; 2173 | top: 50%; 2174 | width: 800px; 2175 | } 2176 | #DeviceConfigDialogTitle { 2177 | background-color: white; 2178 | color: #000000; 2179 | cursor: pointer; 2180 | font-weight: bold; 2181 | height: 20px; 2182 | left: 2px; 2183 | line-height: 20px; 2184 | position: absolute; 2185 | text-indent: 5px; 2186 | top: 2px; 2187 | vertical-align: middle; 2188 | width: 796px; 2189 | } 2190 | #DeviceConfigDialogContent { 2191 | background-color: white; 2192 | color: #000000; 2193 | height: 371px; 2194 | left: 2px; 2195 | overflow: hidden; 2196 | position: absolute; 2197 | top: 24px; 2198 | width: 796px; 2199 | } 2200 | #DeviceConfigDialogFooter { 2201 | background-color: white; 2202 | height: 50px; 2203 | left: 2px; 2204 | position: absolute; 2205 | top: 398px; 2206 | width: 796px; 2207 | } 2208 | .DeviceConfigDialogButton { 2209 | background-color: #5D6373; 2210 | border: 1px solid #000000; 2211 | cursor: pointer; 2212 | font-weight: bold; 2213 | height: 40px; 2214 | line-height: 40px; 2215 | overflow: hidden; 2216 | position: absolute; 2217 | text-align: center; 2218 | top: 4px; 2219 | vertical-align: middle; 2220 | } 2221 | #DeviceConfigDialogOkButton { 2222 | left: 4px; 2223 | width: 100px; 2224 | } 2225 | #DeviceConfigDialogAbortButton { 2226 | left: 691px; 2227 | width: 100px; 2228 | } 2229 | #DeviceConfigDialogContentLeft { 2230 | left: 0; 2231 | margin: 5px; 2232 | overflow: hidden; 2233 | padding: 5px; 2234 | position: absolute; 2235 | top: 0; 2236 | width: 260px; 2237 | } 2238 | #DeviceConfigDialogContentMain { 2239 | left: 280px; 2240 | margin: 10px; 2241 | position: absolute; 2242 | top: 0; 2243 | width: 480px; 2244 | } 2245 | .DeviceConfigDialogSection { 2246 | color: #000000; 2247 | margin-bottom: 10px; 2248 | } 2249 | .DeviceConfigDialogTable { 2250 | color: #000000; 2251 | } 2252 | #DeviceConfigDialogTestButton { 2253 | background-color: #5D6373; 2254 | border: 1px solid #000000; 2255 | color: white; 2256 | cursor: pointer; 2257 | font-weight: bold; 2258 | height: 20px; 2259 | line-height: 20px; 2260 | text-align: center; 2261 | width: 120px; 2262 | } 2263 | #DeviceConfigDialogTestResult { 2264 | height: 20px; 2265 | line-height: 20px; 2266 | text-align: center; 2267 | width: 120px; 2268 | } 2269 | .YesNoDialogLayer { 2270 | background-image: url("/ise/img/tr50.gif"); 2271 | height: 100%; 2272 | overflow: hidden; 2273 | position: absolute; 2274 | width: 100%; 2275 | } 2276 | .YesNoDialog { 2277 | background-color: #000000; 2278 | height: 150px; 2279 | left: 50%; 2280 | margin-left: -300px; 2281 | margin-top: -125px; 2282 | position: relative; 2283 | top: 50%; 2284 | width: 600px; 2285 | } 2286 | .YesNoDialogTitle { 2287 | background-color: white; 2288 | color: #000000; 2289 | cursor: pointer; 2290 | font-weight: bold; 2291 | height: 20px; 2292 | left: 2px; 2293 | line-height: 20px; 2294 | position: absolute; 2295 | text-indent: 5px; 2296 | top: 2px; 2297 | vertical-align: middle; 2298 | width: 596px; 2299 | } 2300 | .YesNoDialogContentWrapper { 2301 | background-color: white; 2302 | height: 70px; 2303 | left: 2px; 2304 | overflow: hidden; 2305 | position: absolute; 2306 | top: 24px; 2307 | width: 596px; 2308 | } 2309 | .YesNoDialogContent { 2310 | color: #000000; 2311 | font-weight: bold; 2312 | padding: 5px; 2313 | } 2314 | .YesNoDialogFooter { 2315 | background-color: white; 2316 | height: 50px; 2317 | left: 2px; 2318 | position: absolute; 2319 | top: 98px; 2320 | width: 596px; 2321 | } 2322 | .YesNoDialog_yesButton { 2323 | background-color: #5D6373; 2324 | border: 1px solid #000000; 2325 | cursor: pointer; 2326 | font-weight: bold; 2327 | height: 40px; 2328 | left: 4px; 2329 | line-height: 40px; 2330 | overflow: hidden; 2331 | position: absolute; 2332 | text-align: center; 2333 | top: 4px; 2334 | vertical-align: middle; 2335 | width: 100px; 2336 | } 2337 | .YesNoDialog_noButton { 2338 | background-color: #5D6373; 2339 | border: 1px solid #000000; 2340 | cursor: pointer; 2341 | font-weight: bold; 2342 | height: 40px; 2343 | left: 491px; 2344 | line-height: 40px; 2345 | overflow: hidden; 2346 | position: absolute; 2347 | text-align: center; 2348 | top: 4px; 2349 | vertical-align: middle; 2350 | width: 100px; 2351 | } 2352 | .bidcosrf_page { 2353 | margin: 20px; 2354 | } 2355 | .bidcosrf_footer { 2356 | background-color: white; 2357 | height: 2px; 2358 | margin-bottom: 20px; 2359 | margin-left: 10%; 2360 | margin-top: 20px; 2361 | overflow: hidden; 2362 | width: 80%; 2363 | } 2364 | .bidcosrf_button { 2365 | background-color: #5D6373; 2366 | border: 2px solid #000000; 2367 | color: white; 2368 | cursor: pointer; 2369 | font-weight: bold; 2370 | padding: 5px; 2371 | text-align: center; 2372 | } 2373 | .bidcosrf_optionbutton { 2374 | float: left; 2375 | margin: 10px 20px 10px 0; 2376 | width: 100px; 2377 | } 2378 | .bidcosrf_clear { 2379 | clear: both; 2380 | } 2381 | .bidcosrf_table { 2382 | border: 1px solid #000000; 2383 | border-spacing: 0; 2384 | width: 95%; 2385 | } 2386 | .bidcosrf_tableheader { 2387 | background-color: #5D6373; 2388 | border: 1px solid #000000; 2389 | color: white; 2390 | font-weight: bold; 2391 | padding: 5px; 2392 | } 2393 | .bidcosrf_tablecell { 2394 | background-color: #9BA6BF; 2395 | border: 1px solid #000000; 2396 | color: #000000; 2397 | empty-cells: show; 2398 | text-align: center; 2399 | } 2400 | .bidcosrf_imagecell { 2401 | background-color: white; 2402 | border: 1px solid #000000; 2403 | empty-cells: show; 2404 | text-align: center; 2405 | } 2406 | .bidcosrf_actioncell { 2407 | background-color: #F0F0F0; 2408 | border: 1px solid #000000; 2409 | empty-cells: show; 2410 | text-align: center; 2411 | } 2412 | .bidcosrf_imagesize { 2413 | height: 80px; 2414 | width: 50px; 2415 | } 2416 | html, body { 2417 | border: 0 none; 2418 | font: 10pt Verdana; 2419 | margin: 0; 2420 | padding: 0; 2421 | } 2422 | application { 2423 | border: 0 none; 2424 | height: 100%; 2425 | margin: 0; 2426 | overflow: hidden; 2427 | padding: 0; 2428 | position: absolute; 2429 | width: 100%; 2430 | } 2431 | .UIDisabled { 2432 | background-color: #F0F0F0; 2433 | border: 0 none; 2434 | height: 100%; 2435 | left: 0; 2436 | margin: 0; 2437 | opacity: 0.5; 2438 | overflow: hidden; 2439 | padding: 0; 2440 | position: absolute; 2441 | top: 0; 2442 | width: 100%; 2443 | } 2444 | .UIFrame { 2445 | background-color: #000000; 2446 | border: 0 none; 2447 | margin: 0; 2448 | overflow: hidden; 2449 | padding: 0; 2450 | position: absolute; 2451 | } 2452 | .UIFrameTitle { 2453 | background-color: white; 2454 | border: 0 none; 2455 | color: #000000; 2456 | cursor: pointer; 2457 | margin: 0; 2458 | overflow: hidden; 2459 | padding: 0; 2460 | position: absolute; 2461 | text-indent: 5px; 2462 | } 2463 | .UIFrameContent { 2464 | background-color: white; 2465 | border: 0 none; 2466 | color: #000000; 2467 | margin: 0; 2468 | overflow: hidden; 2469 | padding: 0; 2470 | position: absolute; 2471 | } 2472 | .UILabel { 2473 | border: 0 none; 2474 | margin: 0; 2475 | overflow: hidden; 2476 | padding: 0; 2477 | position: absolute; 2478 | } 2479 | .UIText { 2480 | border: 0 none; 2481 | margin: 0; 2482 | overflow: hidden; 2483 | padding: 0; 2484 | position: absolute; 2485 | } 2486 | .UICheckbox { 2487 | border: 0 none; 2488 | margin: 0; 2489 | overflow: hidden; 2490 | padding: 0; 2491 | position: absolute; 2492 | } 2493 | .UIScrollPane { 2494 | border: 0 none; 2495 | margin: 0; 2496 | overflow: hidden; 2497 | padding: 0; 2498 | position: absolute; 2499 | } 2500 | .UIScrollPaneContent { 2501 | border: 0 none; 2502 | left: 0; 2503 | margin: 0; 2504 | overflow: scroll; 2505 | padding: 0; 2506 | position: absolute; 2507 | top: 0; 2508 | } 2509 | .UIButton { 2510 | background-color: #5D6373; 2511 | border: 1px solid #000000; 2512 | margin: 0; 2513 | overflow: hidden; 2514 | padding: 0; 2515 | position: absolute; 2516 | } 2517 | .UIButtonText { 2518 | border: 0 none; 2519 | color: white; 2520 | cursor: pointer; 2521 | font-weight: bold; 2522 | height: 22px; 2523 | line-height: 22px; 2524 | margin: 0; 2525 | overflow: hidden; 2526 | padding: 0; 2527 | position: absolute; 2528 | text-align: center; 2529 | width: 150px; 2530 | } 2531 | .UIButtonHighlight { 2532 | border: 0 none; 2533 | color: white; 2534 | cursor: pointer; 2535 | font-weight: bold; 2536 | height: 22px; 2537 | line-height: 22px; 2538 | margin: 0; 2539 | overflow: hidden; 2540 | padding: 0; 2541 | position: absolute; 2542 | text-align: center; 2543 | width: 150px; 2544 | } 2545 | .UIButtonPressed { 2546 | border: 0 none; 2547 | color: white; 2548 | cursor: pointer; 2549 | font-weight: bold; 2550 | height: 22px; 2551 | line-height: 22px; 2552 | margin: 0; 2553 | overflow: hidden; 2554 | padding: 0; 2555 | position: absolute; 2556 | text-align: center; 2557 | width: 150px; 2558 | } 2559 | .UITextEdit { 2560 | margin: 0; 2561 | padding: 0; 2562 | position: absolute; 2563 | } 2564 | .UITextArea { 2565 | margin: 0; 2566 | padding: 0; 2567 | position: absolute; 2568 | } 2569 | .UIListbox { 2570 | margin: 0; 2571 | padding: 0; 2572 | position: absolute; 2573 | } 2574 | * { 2575 | font-family: Verdana,Tahoma,Arial,Helvetica,sans-serif; 2576 | font-size: 12px; 2577 | } 2578 | .CLASS00001 { 2579 | height: 100%; 2580 | overflow: auto; 2581 | width: 100%; 2582 | } 2583 | .CLASS00002 { 2584 | background-color: #5D6373; 2585 | border-color: #000000; 2586 | } 2587 | .CLASS00003 { 2588 | height: 200px; 2589 | width: 100%; 2590 | } 2591 | .CLASS00004 { 2592 | background-color: #F0F0F0; 2593 | height: 120px; 2594 | text-align: left; 2595 | width: 75%; 2596 | } 2597 | .CLASS00005 { 2598 | color: #000000; 2599 | margin-right: 20px; 2600 | } 2601 | .CLASS00006 { 2602 | border: 1px solid #000000; 2603 | margin-right: 30px; 2604 | width: 55px; 2605 | } 2606 | .CLASS00007 { 2607 | color: #000000; 2608 | margin-right: 20px; 2609 | } 2610 | .CLASS00008 { 2611 | border: 1px solid #000000; 2612 | margin-right: 30px; 2613 | width: 55px; 2614 | } 2615 | .CLASS00009 { 2616 | color: #000000; 2617 | margin-right: 20px; 2618 | } 2619 | .CLASS00010 { 2620 | border: 1px solid #000000; 2621 | width: 55px; 2622 | } 2623 | .CLASS00011 { 2624 | background-color: white; 2625 | height: 120px; 2626 | width: 25%; 2627 | } 2628 | .CLASS00012 { 2629 | cursor: pointer; 2630 | text-align: center; 2631 | } 2632 | .CLASS00013 { 2633 | background-color: white; 2634 | height: 200px; 2635 | width: 20%; 2636 | } 2637 | .CLASS00014 { 2638 | height: 200px; 2639 | width: 100%; 2640 | } 2641 | .CLASS00015 { 2642 | background-color: white; 2643 | height: 60px; 2644 | text-align: left; 2645 | width: 20%; 2646 | } 2647 | .CLASS00016 { 2648 | text-align: center; 2649 | } 2650 | .CLASS00017 { 2651 | text-align: center; 2652 | } 2653 | .CLASS00018 { 2654 | background-color: white; 2655 | height: 200px; 2656 | width: 20%; 2657 | } 2658 | .CLASS00100 { 2659 | background-color: #5D6373; 2660 | border: 1px solid #000000; 2661 | } 2662 | .CLASS00101 { 2663 | background-color: #5D6373; 2664 | border: 1px solid #000000; 2665 | color: white; 2666 | height: 40px; 2667 | text-align: center; 2668 | } 2669 | .CLASS00102 { 2670 | background-color: #9BA6BF; 2671 | border: 1px solid #000000; 2672 | color: #000000; 2673 | height: 160px; 2674 | text-align: center; 2675 | } 2676 | .CLASS00103 { 2677 | background-color: white; 2678 | border: 1px solid #000000; 2679 | color: #000000; 2680 | height: 160px; 2681 | text-align: center; 2682 | } 2683 | .CLASS00104 { 2684 | background-color: white; 2685 | height: 60px; 2686 | text-align: left; 2687 | width: 20%; 2688 | } 2689 | .CLASS00105 { 2690 | text-align: center; 2691 | } 2692 | .CLASS00106 { 2693 | height: 100%; 2694 | overflow: auto; 2695 | width: 100%; 2696 | } 2697 | .CLASS00200 { 2698 | height: 100%; 2699 | overflow: auto; 2700 | width: 100%; 2701 | } 2702 | .CLASS00201 { 2703 | background-color: #5D6373; 2704 | border: 1px solid #000000; 2705 | } 2706 | .CLASS00202 { 2707 | background-color: #5D6373; 2708 | border: 1px solid #000000; 2709 | color: white; 2710 | height: 40px; 2711 | text-align: center; 2712 | } 2713 | .CLASS00203 { 2714 | border: 1px solid #000000; 2715 | } 2716 | .CLASS00204 { 2717 | background-color: white; 2718 | border: 1px solid #000000; 2719 | color: red; 2720 | text-align: left; 2721 | } 2722 | .CLASS00205 { 2723 | border: 1px solid #000000; 2724 | } 2725 | .CLASS00206 { 2726 | background-color: #F0F0F0; 2727 | border: 1px solid #000000; 2728 | color: #000000; 2729 | height: 120px; 2730 | } 2731 | .CLASS00207 { 2732 | background-color: white; 2733 | border: 1px solid #000000; 2734 | height: 120px; 2735 | width: 5%; 2736 | } 2737 | .CLASS00208 { 2738 | cursor: pointer; 2739 | text-align: center; 2740 | width: 120px; 2741 | } 2742 | .CLASS00209 { 2743 | border: 1px solid #000000; 2744 | text-align: left; 2745 | } 2746 | .CLASS00210 { 2747 | background-color: white; 2748 | height: 60px; 2749 | text-align: left; 2750 | width: 20%; 2751 | } 2752 | .CLASS00211 { 2753 | text-align: center; 2754 | } 2755 | .CLASS00300 { 2756 | background-color: white; 2757 | height: 520px; 2758 | overflow: scroll; 2759 | width: 100%; 2760 | } 2761 | .CLASS00301 { 2762 | background-color: #000000; 2763 | } 2764 | .CLASS00302 { 2765 | background-color: #5D6373; 2766 | height: 40px; 2767 | text-align: center; 2768 | } 2769 | .CLASS00303 { 2770 | background-color: #5D6373; 2771 | color: white; 2772 | } 2773 | .CLASS00305 { 2774 | margin: 5px; 2775 | } 2776 | .CLASS00306 { 2777 | margin-left: 5px; 2778 | } 2779 | .CLASS00307 { 2780 | background-color: #5D6373; 2781 | height: 20px; 2782 | text-align: center; 2783 | } 2784 | .CLASS00308 { 2785 | background-color: #5D6373; 2786 | color: white; 2787 | } 2788 | .CLASS00309 { 2789 | text-align: left; 2790 | } 2791 | .CLASS00310 { 2792 | background-color: #5D6373; 2793 | height: 20px; 2794 | text-align: center; 2795 | } 2796 | .CLASS00311 { 2797 | background-color: #5D6373; 2798 | color: white; 2799 | } 2800 | .CLASS00312 { 2801 | background-color: white; 2802 | border: 1px solid #000000; 2803 | } 2804 | .CLASS00313 { 2805 | text-align: center; 2806 | } 2807 | .CLASS00314 { 2808 | font-size: smaller; 2809 | line-height: 15px; 2810 | text-align: center; 2811 | } 2812 | .CLASS00400 { 2813 | height: 50px; 2814 | margin: 0; 2815 | padding: 0; 2816 | position: relative; 2817 | width: 50px; 2818 | } 2819 | .CLASS00500 { 2820 | height: 100%; 2821 | overflow: auto; 2822 | width: 100%; 2823 | } 2824 | .CLASS00501 { 2825 | background-color: #5D6373; 2826 | border-color: #000000; 2827 | } 2828 | .CLASS00502 { 2829 | background-color: white; 2830 | height: 200px; 2831 | width: 20%; 2832 | } 2833 | .CLASS00503 { 2834 | background-color: #F0F0F0; 2835 | height: 120px; 2836 | text-align: left; 2837 | width: 75%; 2838 | } 2839 | .CLASS00504 { 2840 | color: #000000; 2841 | margin-right: 20px; 2842 | } 2843 | .CLASS00505 { 2844 | border: 1px solid #000000; 2845 | margin-right: 30px; 2846 | width: 55px; 2847 | } 2848 | .CLASS00506 { 2849 | border: 1px solid #000000; 2850 | width: 55px; 2851 | } 2852 | .CLASS00507 { 2853 | background-color: white; 2854 | height: 120px; 2855 | width: 25%; 2856 | } 2857 | .CLASS00508 { 2858 | text-align: center; 2859 | } 2860 | .CLASS00509 { 2861 | background-color: white; 2862 | height: 60px; 2863 | text-align: left; 2864 | width: 20%; 2865 | } 2866 | .CLASS00510 { 2867 | background-color: white; 2868 | height: 200px; 2869 | width: 20%; 2870 | } 2871 | .CLASS00600 { 2872 | height: 100%; 2873 | overflow: auto; 2874 | width: 100%; 2875 | } 2876 | .CLASS00601 { 2877 | background-color: #5D6373; 2878 | border-color: #000000; 2879 | } 2880 | .CLASS00602 { 2881 | background-color: #F0F0F0; 2882 | height: 100px; 2883 | text-align: left; 2884 | } 2885 | .CLASS00603 { 2886 | margin-left: 5%; 2887 | } 2888 | .CLASS00604 { 2889 | background-color: white; 2890 | height: 60px; 2891 | text-align: left; 2892 | width: 20%; 2893 | } 2894 | .CLASS00605 { 2895 | text-align: center; 2896 | } 2897 | .CLASS00700 { 2898 | height: 100%; 2899 | overflow: auto; 2900 | vertical-align: top; 2901 | width: 100%; 2902 | } 2903 | .CLASS00701 { 2904 | background-color: #5D6373; 2905 | border: 1px solid #000000; 2906 | height: 100%; 2907 | } 2908 | .CLASS00702 { 2909 | background-color: white; 2910 | border-right: 1px solid #000000; 2911 | color: #000000; 2912 | } 2913 | .CLASS00703 { 2914 | height: 100%; 2915 | width: 100%; 2916 | } 2917 | .CLASS00704 { 2918 | text-align: left; 2919 | } 2920 | .CLASS00705 { 2921 | color: red !important; 2922 | font-weight: bold; 2923 | } 2924 | .CLASS00706 { 2925 | background-color: white; 2926 | } 2927 | .CLASS00707 { 2928 | background-color: white; 2929 | color: #000000; 2930 | width: 100%; 2931 | } 2932 | .CLASS00708 { 2933 | width: 100%; 2934 | } 2935 | .CLASS00709 { 2936 | text-align: right; 2937 | } 2938 | .CLASS00711 { 2939 | text-align: center; 2940 | } 2941 | .CLASS00712 { 2942 | font-weight: normal; 2943 | width: 200px; 2944 | } 2945 | .CLASS00713 { 2946 | background-color: #182C6E; 2947 | width: 100%; 2948 | } 2949 | .CLASS00714 { 2950 | border-top: 5px solid white; 2951 | width: 100%; 2952 | } 2953 | .CLASS00715 { 2954 | color: white !important; 2955 | font-size: 10pt; 2956 | font-weight: bold; 2957 | text-align: left; 2958 | } 2959 | .CLASS00716 { 2960 | font-weight: normal; 2961 | text-align: center; 2962 | width: 200px; 2963 | } 2964 | .CLASS00717 { 2965 | background-color: white; 2966 | height: 200px; 2967 | overflow: scroll; 2968 | } 2969 | .CLASS00718 { 2970 | background-color: white; 2971 | border: 1px solid #000000; 2972 | height: 60px; 2973 | text-align: left; 2974 | width: 20%; 2975 | } 2976 | .CLASS00719 { 2977 | margin-left: 5px; 2978 | text-align: center; 2979 | } 2980 | .CLASS00800 { 2981 | height: 100%; 2982 | overflow: auto; 2983 | width: 100%; 2984 | } 2985 | .CLASS00801 { 2986 | background-color: white; 2987 | border: 1px solid #000000; 2988 | empty-cells: show; 2989 | text-align: left; 2990 | } 2991 | .CLASS00802 { 2992 | background-color: white; 2993 | height: 200px; 2994 | vertical-align: top; 2995 | } 2996 | .CLASS00803 { 2997 | color: #000000; 2998 | font-size: larger; 2999 | text-align: left; 3000 | } 3001 | .CLASS00804 { 3002 | color: #000000; 3003 | } 3004 | .CLASS00805 { 3005 | margin-left: 15px; 3006 | width: 55px; 3007 | } 3008 | .CLASS00806 { 3009 | width: 55px; 3010 | } 3011 | .CLASS00807 { 3012 | color: #000000; 3013 | margin-left: 20px; 3014 | } 3015 | .CLASS00808 { 3016 | background-color: white; 3017 | height: 60px; 3018 | text-align: left; 3019 | width: 20%; 3020 | } 3021 | .CLASS00809 { 3022 | text-align: center; 3023 | } 3024 | .CLASS00900 { 3025 | height: 100%; 3026 | overflow: auto; 3027 | vertical-align: top; 3028 | width: 100%; 3029 | } 3030 | .CLASS00901 { 3031 | background-color: #5D6373; 3032 | border: 1px solid #000000; 3033 | height: 100%; 3034 | } 3035 | .CLASS00902 { 3036 | background-color: white; 3037 | color: #000000; 3038 | } 3039 | .CLASS00903 { 3040 | border-right: 1px solid #000000; 3041 | } 3042 | .CLASS00904 { 3043 | background-color: white; 3044 | color: #000000; 3045 | } 3046 | .CLASS00905 { 3047 | background-color: white; 3048 | color: #000000; 3049 | text-align: left; 3050 | } 3051 | .CLASS00906 { 3052 | text-align: left; 3053 | } 3054 | .CLASS00907 { 3055 | text-align: right; 3056 | } 3057 | .CLASS00908 { 3058 | background-color: white; 3059 | color: red; 3060 | } 3061 | .CLASS00909 { 3062 | border-left: 1px solid #000000; 3063 | height: 100%; 3064 | } 3065 | .CLASS00910 { 3066 | font-weight: normal; 3067 | line-height: 15px; 3068 | text-align: right; 3069 | } 3070 | .CLASS00911 { 3071 | background-color: #000000; 3072 | width: 100%; 3073 | } 3074 | .CLASS00912 { 3075 | border-top: 5px solid white; 3076 | } 3077 | .CLASS00913 { 3078 | border: 1px solid #000000; 3079 | height: 100%; 3080 | } 3081 | .CLASS00914 { 3082 | background-color: white; 3083 | border: 1px solid #000000; 3084 | color: #000000; 3085 | text-align: center; 3086 | } 3087 | .CLASS00915 { 3088 | background-color: gray; 3089 | border: 1px solid #000000; 3090 | color: white; 3091 | cursor: pointer; 3092 | } 3093 | .CLASS00916 { 3094 | background-color: white; 3095 | border: 1px solid #000000; 3096 | height: 60px; 3097 | text-align: left; 3098 | width: 20%; 3099 | } 3100 | .CLASS00917 { 3101 | text-align: center; 3102 | } 3103 | .CLASS01000 { 3104 | background-color: #000000; 3105 | height: 700px; 3106 | overflow: auto; 3107 | width: 100%; 3108 | } 3109 | .CLASS01002 { 3110 | empty-cells: show; 3111 | font-size: small; 3112 | width: 100%; 3113 | } 3114 | .CLASS01003 { 3115 | background-color: #5D6373; 3116 | height: 40px; 3117 | } 3118 | .CLASS01004 { 3119 | background-color: #5D6373; 3120 | color: white; 3121 | } 3122 | .CLASS01005 { 3123 | height: 100%; 3124 | width: 100%; 3125 | } 3126 | .CLASS01006 { 3127 | margin: 5px; 3128 | } 3129 | .CLASS01007 { 3130 | margin-left: 5px; 3131 | } 3132 | .CLASS01008 { 3133 | background-color: #5D6373; 3134 | } 3135 | .CLASS01009 { 3136 | padding-left: 2px; 3137 | } 3138 | .CLASS01010 { 3139 | border: medium none; 3140 | height: 15px; 3141 | } 3142 | .CLASS01011 { 3143 | border: medium none; 3144 | height: 15px; 3145 | text-align: left; 3146 | } 3147 | .CLASS01012 { 3148 | background-color: #5D6373; 3149 | border: 1px solid #000000; 3150 | color: white; 3151 | empty-cells: show; 3152 | height: 20px; 3153 | text-align: center; 3154 | } 3155 | .CLASS01013 { 3156 | empty-cells: show; 3157 | width: 60%; 3158 | } 3159 | .CLASS01014 { 3160 | font-size: smaller; 3161 | line-height: 15px; 3162 | } 3163 | .CLASS01100 { 3164 | background-color: white; 3165 | height: 100%; 3166 | overflow: auto; 3167 | width: 100%; 3168 | } 3169 | .CLASS01101 { 3170 | border: 1px solid #000000; 3171 | } 3172 | .CLASS01102 { 3173 | border: 1px solid #000000; 3174 | height: 40px; 3175 | } 3176 | .CLASS01103 { 3177 | border: 1px solid #000000; 3178 | height: 50px; 3179 | } 3180 | .CLASS01104 { 3181 | padding: 10px; 3182 | } 3183 | .CLASS01105 { 3184 | border: 1px solid #000000; 3185 | } 3186 | .CLASS01106 { 3187 | background-color: white; 3188 | border: 1px solid #000000; 3189 | text-align: left; 3190 | } 3191 | .CLASS01107 { 3192 | height: 50px; 3193 | margin: 0; 3194 | padding: 0; 3195 | position: relative; 3196 | width: 50px; 3197 | } 3198 | .CLASS01108 { 3199 | background-color: white; 3200 | border: 1px solid #000000; 3201 | text-align: left; 3202 | width: 50px; 3203 | } 3204 | .CLASS01109 { 3205 | padding-left: 6px; 3206 | text-align: left; 3207 | width: 100%; 3208 | } 3209 | .CLASS01110 { 3210 | margin: 5px; 3211 | width: 100px; 3212 | } 3213 | .CLASS01200 { 3214 | height: 100%; 3215 | overflow: auto; 3216 | width: 100%; 3217 | } 3218 | .CLASS01201 { 3219 | background-color: white; 3220 | border-color: #000000; 3221 | } 3222 | .CLASS01202 { 3223 | background-color: white; 3224 | height: 100px; 3225 | text-align: left; 3226 | width: 20%; 3227 | } 3228 | .CLASS01203 { 3229 | margin-left: 5%; 3230 | } 3231 | .CLASS01204 { 3232 | background-color: white; 3233 | height: 100px; 3234 | text-align: left; 3235 | width: 80%; 3236 | } 3237 | .CLASS01205 { 3238 | width: 75%; 3239 | } 3240 | .CLASS01206 { 3241 | color: #000000; 3242 | margin-left: 20px; 3243 | } 3244 | .CLASS01207 { 3245 | margin-left: 20px; 3246 | } 3247 | .CLASS01208 { 3248 | border: 1px solid #000000; 3249 | cursor: pointer; 3250 | height: 10px; 3251 | width: 16px; 3252 | } 3253 | .CLASS01209 { 3254 | color: #000000; 3255 | } 3256 | .CLASS01210 { 3257 | background-color: white; 3258 | height: 60px; 3259 | padding: 5px; 3260 | width: 20%; 3261 | } 3262 | .CLASS01211 { 3263 | text-align: center; 3264 | } 3265 | .CLASS01212 { 3266 | width: 100%; 3267 | } 3268 | .CLASS01213 { 3269 | margin-left: 2px; 3270 | } 3271 | .CLASS01214 { 3272 | margin-left: -2px; 3273 | } 3274 | .CLASS01215 { 3275 | color: #000000; 3276 | cursor: pointer; 3277 | font-size: 12px; 3278 | font-weight: bold; 3279 | text-decoration: underline; 3280 | } 3281 | .CLASS01217 { 3282 | background-color: #5D6373; 3283 | border: 1px solid #000000; 3284 | color: white; 3285 | cursor: pointer; 3286 | font-weight: bold; 3287 | height: 30px; 3288 | line-height: 30px; 3289 | margin-left: 20px; 3290 | text-align: center; 3291 | width: 120px; 3292 | } 3293 | .CLASS01300 { 3294 | background-color: white; 3295 | height: 400px; 3296 | overflow: scroll; 3297 | width: 100%; 3298 | } 3299 | .CLASS01301 { 3300 | background-color: #000000; 3301 | border: 1px solid #000000; 3302 | empty-cells: show; 3303 | } 3304 | .CLASS01302 { 3305 | background-color: #5D6373; 3306 | height: 40px; 3307 | text-align: center; 3308 | } 3309 | .CLASS01303 { 3310 | background-color: #5D6373; 3311 | color: white; 3312 | } 3313 | .CLASS01304 { 3314 | height: 100%; 3315 | width: 100%; 3316 | } 3317 | .CLASS01306 { 3318 | margin: 5px; 3319 | } 3320 | .CLASS01307 { 3321 | margin-left: 5px; 3322 | } 3323 | .CLASS01308 { 3324 | background-color: #5D6373; 3325 | height: 20px; 3326 | text-align: center; 3327 | } 3328 | .CLASS01309 { 3329 | background-color: white; 3330 | border: 1px solid #000000; 3331 | empty-cells: show; 3332 | } 3333 | .CLASS01310 { 3334 | background-color: white; 3335 | height: 60px; 3336 | text-align: left; 3337 | width: 20%; 3338 | } 3339 | .CLASS01311 { 3340 | text-align: center; 3341 | } 3342 | .CLASS01312 { 3343 | font-size: smaller; 3344 | line-height: 15px; 3345 | text-align: center; 3346 | } 3347 | .CLASS01400 { 3348 | height: 100%; 3349 | overflow: auto; 3350 | width: 100%; 3351 | } 3352 | .CLASS01401 { 3353 | background-color: #5D6373; 3354 | border: 1px solid #000000; 3355 | font-size: small; 3356 | } 3357 | .CLASS01402 { 3358 | background-color: white; 3359 | border: 1px solid #000000; 3360 | color: #000000; 3361 | } 3362 | .CLASS01403 { 3363 | background-color: #9BA6BF; 3364 | border: 1px solid #000000; 3365 | padding: 3px; 3366 | text-align: left; 3367 | } 3368 | .CLASS01404 { 3369 | color: red !important; 3370 | } 3371 | .CLASS01405 { 3372 | color: #000000; 3373 | } 3374 | .CLASS01406 { 3375 | background-color: white; 3376 | border: 1px solid #000000; 3377 | height: 60px; 3378 | text-align: left; 3379 | } 3380 | .CLASS01407 { 3381 | cursor: pointer; 3382 | margin-left: 1%; 3383 | } 3384 | .CLASS01408 { 3385 | cursor: pointer; 3386 | } 3387 | .CLASS01501 { 3388 | width: 100%; 3389 | } 3390 | .CLASS01600 { 3391 | height: 100%; 3392 | overflow: auto; 3393 | width: 100%; 3394 | } 3395 | .CLASS01601 { 3396 | background-color: #5D6373; 3397 | border: 1px solid #000000; 3398 | } 3399 | .CLASS01602 { 3400 | background-color: #5D6373; 3401 | border: 1px solid #000000; 3402 | color: white; 3403 | height: 40px; 3404 | text-align: center; 3405 | } 3406 | .CLASS01603 { 3407 | background-color: #9BA6BF; 3408 | border: 1px solid #000000; 3409 | color: #000000; 3410 | height: 160px; 3411 | text-align: center; 3412 | } 3413 | .CLASS01604 { 3414 | background-color: white; 3415 | border: 1px solid #000000; 3416 | color: #000000; 3417 | height: 160px; 3418 | text-align: center; 3419 | } 3420 | .CLASS01605 { 3421 | background-color: white; 3422 | height: 60px; 3423 | text-align: left; 3424 | width: 20%; 3425 | } 3426 | .CLASS01606 { 3427 | text-align: center; 3428 | } 3429 | .CLASS01700 { 3430 | background-color: white; 3431 | border: 1px solid #000000; 3432 | color: #000000; 3433 | height: 500px; 3434 | width: 100%; 3435 | } 3436 | .CLASS01701 { 3437 | background-color: white; 3438 | width: 100%; 3439 | } 3440 | .CLASS01702 { 3441 | background-color: #5D6373; 3442 | border: 1px solid #000000; 3443 | color: white; 3444 | cursor: pointer; 3445 | height: 20px; 3446 | margin-left: 10px; 3447 | width: 100px; 3448 | } 3449 | .CLASS01800 { 3450 | height: 100%; 3451 | left: 0; 3452 | overflow: hidden; 3453 | top: 0; 3454 | width: 100%; 3455 | } 3456 | .CLASS01801 { 3457 | margin: 4px; 3458 | } 3459 | .CLASS01802 { 3460 | float: left; 3461 | height: 100%; 3462 | left: 0; 3463 | overflow: hidden; 3464 | top: 0; 3465 | width: 50%; 3466 | } 3467 | .CLASS01803 { 3468 | background-color: white; 3469 | margin-left: 4px; 3470 | margin-right: 4px; 3471 | text-align: center; 3472 | } 3473 | .CLASS01804 { 3474 | background-color: #9BA6BF; 3475 | color: #000000; 3476 | height: 96%; 3477 | margin-bottom: 1px; 3478 | margin-left: 4px; 3479 | margin-right: 4px; 3480 | overflow: auto; 3481 | } 3482 | .CLASS01805 { 3483 | margin-top: 20px; 3484 | } 3485 | .CLASS01806 { 3486 | border: 1px solid #000000; 3487 | margin-left: 20px; 3488 | } 3489 | .CLASS01807 { 3490 | background-color: #5D6373; 3491 | border: 1px solid #000000; 3492 | height: 30px; 3493 | text-align: center; 3494 | width: 580px; 3495 | } 3496 | .CLASS01808 { 3497 | background-color: #5D6373; 3498 | border: 1px solid #000000; 3499 | height: 5px; 3500 | width: 580px; 3501 | } 3502 | .CLASS01809 { 3503 | float: left; 3504 | height: 100%; 3505 | overflow: hidden; 3506 | top: 0; 3507 | width: 49%; 3508 | } 3509 | .CLASS01810 { 3510 | height: 50%; 3511 | } 3512 | .CLASS01811 { 3513 | color: white; 3514 | padding-top: 5px; 3515 | } 3516 | .CLASS01812 { 3517 | background-color: #F0F0F0; 3518 | border: 1px solid #000000; 3519 | color: #000000; 3520 | height: 120px; 3521 | width: 580px; 3522 | } 3523 | .CLASS01900 { 3524 | background-color: #5D6373; 3525 | border: 1px solid #000000; 3526 | color: white; 3527 | cursor: pointer; 3528 | } 3529 | .CLASS02000 { 3530 | background-color: #5D6373; 3531 | border: 1px solid #000000; 3532 | color: white; 3533 | cursor: pointer; 3534 | } 3535 | .CLASS02100 { 3536 | background-color: #9BA6BF; 3537 | border: medium none; 3538 | color: #000000; 3539 | width: 100%; 3540 | } 3541 | .CLASS02101 { 3542 | background-color: #F0F0F0; 3543 | border: medium none; 3544 | color: #000000; 3545 | width: 100%; 3546 | } 3547 | .CLASS02102 { 3548 | height: 100px; 3549 | width: 100px; 3550 | } 3551 | .CLASS02103 { 3552 | background-color: white; 3553 | border: 1px solid #000000; 3554 | } 3555 | .CLASS02104 { 3556 | cursor: pointer; 3557 | height: 100px; 3558 | line-height: 100px; 3559 | width: 100px; 3560 | } 3561 | .CLASS02105 { 3562 | background-color: #000000; 3563 | text-align: center; 3564 | } 3565 | .CLASS02106 { 3566 | background-color: #5D6373; 3567 | color: white; 3568 | height: 40px; 3569 | } 3570 | .CLASS02107 { 3571 | background-color: #5D6373; 3572 | color: white; 3573 | } 3574 | .CLASS02108 { 3575 | background-color: #5D6373; 3576 | border: 1px solid #000000; 3577 | color: white; 3578 | cursor: pointer; 3579 | text-align: center; 3580 | } 3581 | .CLASS02109 { 3582 | height: 30px; 3583 | } 3584 | .CLASS02110 { 3585 | padding-left: 5px; 3586 | text-align: left; 3587 | } 3588 | .CLASS02201 { 3589 | cursor: pointer; 3590 | text-decoration: underline; 3591 | } 3592 | .CLASS02300 { 3593 | font-size: 14px; 3594 | font-weight: bold; 3595 | width: 29.7cm; 3596 | } 3597 | .CLASS02301 { 3598 | cursor: pointer; 3599 | } 3600 | .CLASS02400 { 3601 | cursor: pointer; 3602 | text-decoration: underline; 3603 | } 3604 | .CLASS02401 { 3605 | cursor: pointer; 3606 | } 3607 | .CLASS02402 { 3608 | color: #000000; 3609 | cursor: pointer; 3610 | font-weight: bold; 3611 | text-decoration: underline; 3612 | } 3613 | .CLASS02500 { 3614 | border: 1px solid #000000; 3615 | } 3616 | .CLASS02501 { 3617 | background-color: #5D6373; 3618 | border: 1px solid #000000; 3619 | font-size: 12px; 3620 | padding: 4px; 3621 | text-align: center; 3622 | vertical-align: middle; 3623 | } 3624 | .CLASS02502 { 3625 | overflow: hidden; 3626 | width: 520px; 3627 | } 3628 | .CLASS02503 { 3629 | background-color: #5D6373; 3630 | border: 1px solid #000000; 3631 | } 3632 | .CLASS02504 { 3633 | height: 5px; 3634 | overflow: hidden; 3635 | width: 520px; 3636 | } 3637 | .CLASS02505 { 3638 | background-color: #F0F0F0; 3639 | border: 1px solid #000000; 3640 | color: #000000; 3641 | height: 120px; 3642 | width: 520px; 3643 | } 3644 | .CLASS02506 { 3645 | background-color: #5D6373; 3646 | border: 1px solid #000000; 3647 | height: 5px; 3648 | } 3649 | .CLASS02507 { 3650 | background-color: #F0F0F0; 3651 | border: 1px solid #000000; 3652 | color: #000000; 3653 | font-size: 12px; 3654 | height: 30px; 3655 | overflow: auto; 3656 | padding: 4px; 3657 | text-align: center; 3658 | } 3659 | .CLASS02508 { 3660 | background-color: #F0F0F0; 3661 | border: 1px solid #000000; 3662 | color: #000000; 3663 | height: 120px; 3664 | max-width: 502px; 3665 | overflow: auto; 3666 | width: 520px; 3667 | } 3668 | .CLASS02509 { 3669 | overflow: hidden; 3670 | width: 120px; 3671 | } 3672 | .CLASS02510 { 3673 | border: medium none; 3674 | color: #000000; 3675 | width: 100%; 3676 | } 3677 | .CLASS02511 { 3678 | height: 96px; 3679 | width: 96px; 3680 | } 3681 | .CLASS02512 { 3682 | font-size: smaller; 3683 | } 3684 | .CLASS02513 { 3685 | background-color: white; 3686 | border: 1px solid #000000; 3687 | width: 96px; 3688 | } 3689 | .CLASS02514 { 3690 | border: 1px solid #000000; 3691 | height: 96px; 3692 | width: 96px; 3693 | } 3694 | .CLASS02515 { 3695 | width: 96px; 3696 | } 3697 | .CLASS02516 { 3698 | background-color: #9BA6BF; 3699 | border: 1px solid #000000; 3700 | color: #000000; 3701 | cursor: pointer; 3702 | font-size: 7pt; 3703 | font-style: italic; 3704 | height: 20px; 3705 | line-height: 20px; 3706 | width: 50px; 3707 | } 3708 | .CLASS02517 { 3709 | background-color: #5D6373; 3710 | border: 1px solid #000000; 3711 | color: white; 3712 | cursor: pointer; 3713 | font-size: 7pt; 3714 | font-style: italic; 3715 | height: 20px; 3716 | line-height: 20px; 3717 | width: 50px; 3718 | } 3719 | .CLASS02518 { 3720 | background-color: white; 3721 | border: 1px solid #000000; 3722 | } 3723 | .CLASS02519 { 3724 | background-color: #F0F0F0 !important; 3725 | text-align: left; 3726 | } 3727 | .CLASS02520 { 3728 | background-color: #F0F0F0; 3729 | border: medium none; 3730 | color: #000000; 3731 | width: 100%; 3732 | } 3733 | .CLASS02521 { 3734 | border: medium none; 3735 | text-align: left; 3736 | width: 96px; 3737 | } 3738 | .CLASS02522 { 3739 | cursor: pointer; 3740 | height: 96px; 3741 | line-height: 100px; 3742 | width: 96px; 3743 | } 3744 | .CLASS02523 { 3745 | border: medium none; 3746 | } 3747 | .CLASS02524 { 3748 | border: medium none; 3749 | width: 75%; 3750 | } 3751 | .CLASS02525 { 3752 | background-color: #5D6373; 3753 | border: 1px solid #000000; 3754 | height: 96px; 3755 | width: 96px; 3756 | } 3757 | .CLASS02525b { 3758 | background-color: #00C300; 3759 | border: 1px solid #000000; 3760 | height: 96px; 3761 | width: 96px; 3762 | } 3763 | .CLASS02526 { 3764 | color: #000000; 3765 | } 3766 | .CLASS02527 { 3767 | color: white; 3768 | } 3769 | .CLASS02528 { 3770 | border: medium none; 3771 | width: 50%; 3772 | } 3773 | .CLASS02529 { 3774 | border: medium none !important; 3775 | text-align: left !important; 3776 | } 3777 | .CLASS02530 { 3778 | background-color: #5D6373; 3779 | color: #000000; 3780 | } 3781 | .CLASS02531 { 3782 | color: #000000; 3783 | text-align: center; 3784 | } 3785 | .CLASS02532 { 3786 | font-size: 10px; 3787 | height: 25px; 3788 | width: 220px; 3789 | } 3790 | .CLASS02533 { 3791 | white-space: nowrap; 3792 | } 3793 | .CLASS02534 { 3794 | float: left; 3795 | } 3796 | .CLASS02535 { 3797 | float: right; 3798 | } 3799 | .CLASS02536 { 3800 | border: medium none; 3801 | } 3802 | .CLASS02537 { 3803 | background-color: #F0F0F0 !important; 3804 | padding: 5px; 3805 | } 3806 | .CLASS02538 { 3807 | height: 25px; 3808 | width: 220px; 3809 | } 3810 | .CLASS02539 { 3811 | background-color: #9BA6BF !important; 3812 | } 3813 | .CLASS02540 { 3814 | border: 0 none; 3815 | text-align: center; 3816 | width: 100%; 3817 | } 3818 | .CLASS02541 { 3819 | background-color: #5D6373; 3820 | color: #000000; 3821 | } 3822 | .CLASS02542 { 3823 | border: 1px solid #000000; 3824 | font-size: 20px; 3825 | text-align: right; 3826 | } 3827 | .CLASS02542b { 3828 | border: 1px solid #000000; 3829 | font-size: 18px; 3830 | text-align: right; 3831 | } 3832 | .CLASS02543 { 3833 | border: 1px solid #000000; 3834 | } 3835 | .CLASS02544 { 3836 | background-color: #5D6373; 3837 | } 3838 | .CLASS02545 { 3839 | cursor: pointer; 3840 | height: 35px; 3841 | line-height: 35px; 3842 | width: 80px; 3843 | } 3844 | .CLASS02546 { 3845 | color: #000000; 3846 | } 3847 | .CLASS02547 { 3848 | width: 100px; 3849 | } 3850 | .CLASS02548 { 3851 | background-color: #5D6373; 3852 | } 3853 | .CLASS02549 { 3854 | text-align: left; 3855 | } 3856 | .CLASS02550 { 3857 | cursor: pointer; 3858 | height: 35px; 3859 | line-height: 35px; 3860 | width: 80px; 3861 | } 3862 | .CLASS02551 { 3863 | cursor: pointer; 3864 | height: 35px; 3865 | width: 80px; 3866 | } 3867 | .CLASS02552 { 3868 | border: 1px solid #000000; 3869 | } 3870 | .CLASS02553 { 3871 | height: 100%; 3872 | } 3873 | .CLASS02554 { 3874 | cursor: pointer; 3875 | height: 35px; 3876 | width: 96px; 3877 | } 3878 | .CLASS02555 { 3879 | font-size: smaller; 3880 | font-weight: normal; 3881 | } 3882 | .CLASS02556 { 3883 | border-right: 1px solid #000000; 3884 | border-top: 1px solid #000000; 3885 | font-size: small; 3886 | font-weight: normal; 3887 | height: 35px; 3888 | width: 96px; 3889 | } 3890 | .CLASS02557 { 3891 | background-color: #5D6373; 3892 | border: 1px solid #000000; 3893 | height: 96px; 3894 | width: 96px; 3895 | } 3896 | .CLASS02558 { 3897 | background-color: #C70022; 3898 | border: 1px solid #000000; 3899 | height: 96px; 3900 | width: 96px; 3901 | } 3902 | .CLASS02600 { 3903 | margin-left: 15px; 3904 | margin-top: 10px; 3905 | } 3906 | .CLASS02601 { 3907 | margin-left: 20px; 3908 | text-align: center; 3909 | width: 97%; 3910 | } 3911 | .CLASS02602 { 3912 | height: 44px; 3913 | } 3914 | .CLASS02603 { 3915 | background-color: #5D6373; 3916 | border: 1px solid #000000; 3917 | color: white !important; 3918 | height: 20px !important; 3919 | } 3920 | .CLASS02604 { 3921 | height: 58px; 3922 | } 3923 | .CLASS02605 { 3924 | background-color: #F0F0F0; 3925 | border: 1px solid #000000; 3926 | color: #000000; 3927 | padding: 4px; 3928 | text-align: left; 3929 | width: 100px; 3930 | } 3931 | .CLASS02606 { 3932 | background-color: #F0F0F0; 3933 | border: 1px solid #000000; 3934 | color: #000000; 3935 | padding: 4px; 3936 | width: 240px; 3937 | } 3938 | .CLASS02607 { 3939 | background-color: #F0F0F0; 3940 | border: 1px solid #000000; 3941 | color: #000000; 3942 | padding: 4px; 3943 | width: 55px; 3944 | } 3945 | .CLASS02608 { 3946 | height: 50px; 3947 | position: relative; 3948 | text-align: left; 3949 | width: 50px; 3950 | } 3951 | .CLASS02609 { 3952 | background-color: #F0F0F0; 3953 | border: 1px solid #000000; 3954 | color: #000000; 3955 | padding: 4px; 3956 | width: 140px; 3957 | } 3958 | .CLASS02610 { 3959 | background-color: #F0F0F0; 3960 | border: 1px solid #000000; 3961 | color: #000000; 3962 | padding: 4px; 3963 | width: 100px; 3964 | } 3965 | .CLASS02611 { 3966 | background-color: #F0F0F0; 3967 | border: 1px solid #000000; 3968 | color: #000000; 3969 | padding: 4px; 3970 | width: 200px; 3971 | } 3972 | .CLASS02612 { 3973 | background-color: #F0F0F0; 3974 | border: 1px solid #000000; 3975 | color: #000000; 3976 | padding: 4px; 3977 | } 3978 | .CLASS02613 { 3979 | background-color: #5D6373; 3980 | border: 1px solid #000000; 3981 | color: white; 3982 | font-weight: bold; 3983 | } 3984 | .CLASS02614 { 3985 | background-color: #C0C0C0; 3986 | border: 1px solid gray; 3987 | color: white; 3988 | font-weight: bold; 3989 | } 3990 | .CLASS02615 { 3991 | font-size: smaller; 3992 | line-height: 14px; 3993 | } 3994 | .CLASS02616 { 3995 | margin: 5px; 3996 | } 3997 | .CLASS02617 { 3998 | margin-left: 5px; 3999 | } 4000 | .CLASS02618 { 4001 | padding-left: 2px; 4002 | } 4003 | .CLASS02619 { 4004 | height: 15px; 4005 | } 4006 | .CLASS02700 { 4007 | border: 1px solid #000000; 4008 | margin-left: 20px; 4009 | margin-top: 20px; 4010 | } 4011 | .CLASS02701 { 4012 | height: 100%; 4013 | width: 100%; 4014 | } 4015 | .CLASS02702 { 4016 | padding-left: 2px; 4017 | } 4018 | .CLASS02703 { 4019 | height: 15px; 4020 | } 4021 | .CLASS02704 { 4022 | background-color: #5D6373; 4023 | color: white !important; 4024 | height: 20px !important; 4025 | } 4026 | .CLASS02705 { 4027 | background-color: #5D6373; 4028 | height: 20px !important; 4029 | } 4030 | .CLASS02706 { 4031 | font-size: smaller; 4032 | line-height: 15px; 4033 | } 4034 | .CLASS02707 { 4035 | height: 100%; 4036 | padding-top: 11px; 4037 | width: 100%; 4038 | } 4039 | .CLASS02708 { 4040 | margin: 5px; 4041 | } 4042 | .CLASS02709 { 4043 | margin-left: 5px; 4044 | } 4045 | .CLASS02800 { 4046 | margin-left: 15px; 4047 | margin-top: 10px; 4048 | } 4049 | .CLASS02801 { 4050 | border: 1px solid #000000; 4051 | margin-left: 20px; 4052 | text-align: center; 4053 | width: 80%; 4054 | } 4055 | .CLASS02802 { 4056 | border: 1px solid #000000; 4057 | font-weight: bold; 4058 | text-align: center; 4059 | vertical-align: middle; 4060 | } 4061 | .CLASS02803 { 4062 | font-weight: bold; 4063 | } 4064 | .CLASS02804 { 4065 | background-color: #5D6373; 4066 | border: 1px solid #000000; 4067 | color: white !important; 4068 | height: 20px !important; 4069 | } 4070 | .CLASS02805 { 4071 | color: #000000; 4072 | font-weight: bold; 4073 | text-decoration: underline; 4074 | } 4075 | .CLASS02806 { 4076 | background-color: #F0F0F0; 4077 | border: 1px solid #000000; 4078 | color: #000000; 4079 | padding: 4px; 4080 | text-align: left; 4081 | } 4082 | .CLASS02807 { 4083 | background-color: #F0F0F0; 4084 | border: 1px solid #000000; 4085 | color: #000000; 4086 | padding: 4px; 4087 | } 4088 | .CLASS02808 { 4089 | font-weight: bold; 4090 | text-decoration: underline; 4091 | } 4092 | .CLASS02809 { 4093 | background-color: #5D6373; 4094 | border: 1px solid #000000; 4095 | color: white; 4096 | cursor: pointer; 4097 | font-weight: bold; 4098 | } 4099 | .CLASS02810 { 4100 | font-size: smaller; 4101 | line-height: 14px; 4102 | } 4103 | .CLASS02811 { 4104 | margin: 5px; 4105 | } 4106 | .CLASS02812 { 4107 | margin-left: 5px; 4108 | } 4109 | .CLASS02813 { 4110 | padding-left: 2px; 4111 | } 4112 | .CLASS02814 { 4113 | height: 15px; 4114 | } 4115 | .CLASS02815 { 4116 | height: 100%; 4117 | } 4118 | .CLASS02900 { 4119 | border: 1px solid #000000; 4120 | margin-left: 50px; 4121 | margin-top: 27px; 4122 | } 4123 | .CLASS02901 { 4124 | height: 100%; 4125 | padding-top: 11px; 4126 | width: 100%; 4127 | } 4128 | .CLASS02902 { 4129 | background-color: #5D6373; 4130 | color: white !important; 4131 | height: 20px !important; 4132 | } 4133 | .CLASS02903 { 4134 | height: 100%; 4135 | width: 100%; 4136 | } 4137 | .CLASS02904 { 4138 | padding-left: 2px; 4139 | } 4140 | .CLASS02905 { 4141 | height: 15px; 4142 | } 4143 | .CLASS02906 { 4144 | background-color: #5D6373; 4145 | height: 20px !important; 4146 | } 4147 | .CLASS02907 { 4148 | border: medium none !important; 4149 | } 4150 | .CLASS02908 { 4151 | margin: 5px; 4152 | } 4153 | .CLASS02909 { 4154 | margin-left: 5px; 4155 | } 4156 | .CLASS03000 { 4157 | height: 44px; 4158 | } 4159 | .CLASS03001 { 4160 | background-color: #5D6373; 4161 | color: white !important; 4162 | height: 20px !important; 4163 | } 4164 | .CLASS03002 { 4165 | margin: 5px; 4166 | } 4167 | .CLASS03003 { 4168 | margin-left: 5px; 4169 | } 4170 | .CLASS03004 { 4171 | font-size: smaller; 4172 | } 4173 | .CLASS03005 { 4174 | text-decoration: none; 4175 | } 4176 | .CLASS03006 { 4177 | background-color: #5D6373; 4178 | height: 20px !important; 4179 | } 4180 | .CLASS03100 { 4181 | height: 1px; 4182 | line-height: 0; 4183 | width: 1px; 4184 | } 4185 | .CLASS03101 { 4186 | empty-cells: show; 4187 | } 4188 | .CLASS03102 { 4189 | border: 1px solid #000000; 4190 | color: white; 4191 | font-weight: bold; 4192 | height: 40px; 4193 | text-align: center; 4194 | } 4195 | .CLASS03103 { 4196 | color: white; 4197 | font-weight: bold; 4198 | text-align: center; 4199 | } 4200 | .CLASS03104 { 4201 | background-color: #5D6373; 4202 | border: 1px solid #000000; 4203 | color: white; 4204 | height: 20px; 4205 | } 4206 | .CLASS03105 { 4207 | height: 40px; 4208 | } 4209 | .CLASS03106 { 4210 | font-size: smaller; 4211 | line-height: 15px; 4212 | } 4213 | .CLASS03107 { 4214 | margin: 5px; 4215 | } 4216 | .CLASS03108 { 4217 | margin-left: 5px; 4218 | } 4219 | .CLASS03200 { 4220 | border: 1px solid #000000; 4221 | margin-left: 50px; 4222 | margin-top: 27px; 4223 | } 4224 | .CLASS03201 { 4225 | background-color: #5D6373; 4226 | color: white !important; 4227 | height: 20px !important; 4228 | } 4229 | .CLASS03202 { 4230 | padding-left: 2px; 4231 | } 4232 | .CLASS03203 { 4233 | height: 15px; 4234 | } 4235 | .CLASS03204 { 4236 | background-color: #5D6373; 4237 | height: 20px !important; 4238 | } 4239 | .CLASS03205 { 4240 | border: medium none !important; 4241 | } 4242 | .CLASS03206 { 4243 | margin: 5px; 4244 | } 4245 | .CLASS03207 { 4246 | margin-left: 5px; 4247 | } 4248 | .CLASS03300 { 4249 | height: 1px; 4250 | line-height: 0; 4251 | width: 1px; 4252 | } 4253 | .CLASS03301 { 4254 | empty-cells: show; 4255 | margin-left: 20px; 4256 | margin-top: 20px; 4257 | width: 75%; 4258 | } 4259 | .CLASS03302 { 4260 | border: 1px solid #000000; 4261 | font-weight: bold; 4262 | height: 40px; 4263 | line-height: 40px; 4264 | text-align: center; 4265 | } 4266 | .CLASS03303 { 4267 | color: white; 4268 | font-weight: bold; 4269 | height: 40px; 4270 | text-align: center; 4271 | } 4272 | .CLASS03304 { 4273 | background-color: #5D6373; 4274 | border: 1px solid #000000; 4275 | color: white !important; 4276 | height: 20px !important; 4277 | } 4278 | .CLASS03305 { 4279 | height: 40px; 4280 | } 4281 | .CLASS03306 { 4282 | font-size: smaller; 4283 | line-height: 15px; 4284 | } 4285 | .CLASS03307 { 4286 | margin: 5px; 4287 | } 4288 | .CLASS03308 { 4289 | margin-left: 5px; 4290 | } 4291 | .CLASS03400 { 4292 | height: 100%; 4293 | overflow: hidden; 4294 | } 4295 | .CLASS03401 { 4296 | width: 100%; 4297 | } 4298 | .CLASS03402 { 4299 | overflow: auto; 4300 | width: 100%; 4301 | } 4302 | .CLASS03403 { 4303 | height: 96%; 4304 | width: 80%; 4305 | } 4306 | .CLASS03404 { 4307 | border: 1px solid #000000; 4308 | height: 50%; 4309 | } 4310 | .CLASS03405 { 4311 | font-size: smaller; 4312 | line-height: 15px; 4313 | } 4314 | .CLASS03406 { 4315 | border: 1px solid #000000; 4316 | margin-top: 27px; 4317 | } 4318 | .CLASS03407 { 4319 | cursor: pointer; 4320 | } 4321 | .CLASS03500 { 4322 | border: 1px solid #000000; 4323 | margin-left: 10px; 4324 | margin-top: 27px; 4325 | } 4326 | .CLASS03501 { 4327 | background-color: #5D6373; 4328 | color: white !important; 4329 | height: 20px !important; 4330 | } 4331 | .CLASS03502 { 4332 | border: medium none !important; 4333 | } 4334 | .CLASS03503 { 4335 | margin: 5px; 4336 | } 4337 | .CLASS03504 { 4338 | margin-left: 5px; 4339 | } 4340 | .CLASS03505 { 4341 | padding-left: 2px; 4342 | } 4343 | .CLASS03506 { 4344 | height: 15px; 4345 | } 4346 | .CLASS03600 { 4347 | border: 1px solid #000000; 4348 | margin-left: 50px; 4349 | margin-top: 27px; 4350 | } 4351 | .CLASS03601 { 4352 | background-color: #5D6373; 4353 | color: white !important; 4354 | height: 20px !important; 4355 | } 4356 | .CLASS03602 { 4357 | border: medium none !important; 4358 | } 4359 | .CLASS03603 { 4360 | margin: 5px; 4361 | } 4362 | .CLASS03604 { 4363 | margin-left: 5px; 4364 | } 4365 | .CLASS03605 { 4366 | padding-left: 2px; 4367 | } 4368 | .CLASS03606 { 4369 | height: 15px; 4370 | } 4371 | .CLASS03700 { 4372 | height: 1px; 4373 | line-height: 0; 4374 | width: 1px; 4375 | } 4376 | .CLASS03701 { 4377 | empty-cells: show; 4378 | } 4379 | .CLASS03702 { 4380 | height: 40px; 4381 | } 4382 | .CLASS03703 { 4383 | font-size: smaller; 4384 | line-height: 15px; 4385 | } 4386 | .CLASS03704 { 4387 | border: 1px solid #000000; 4388 | color: white; 4389 | font-weight: bold; 4390 | height: 100%; 4391 | text-align: center; 4392 | } 4393 | .CLASS03705 { 4394 | color: white; 4395 | font-weight: bold; 4396 | height: 40px; 4397 | text-align: center; 4398 | } 4399 | .CLASS03706 { 4400 | background-color: #5D6373; 4401 | border: 1px solid #000000; 4402 | color: white !important; 4403 | height: 20px !important; 4404 | } 4405 | .CLASS03707 { 4406 | height: 100%; 4407 | width: 100%; 4408 | } 4409 | .CLASS03708 { 4410 | margin: 5px; 4411 | } 4412 | .CLASS03709 { 4413 | margin-left: 5px; 4414 | } 4415 | .CLASS03800 { 4416 | border: 1px solid #000000; 4417 | margin-left: 50px; 4418 | margin-top: 27px; 4419 | } 4420 | .CLASS03801 { 4421 | background-color: #5D6373; 4422 | color: white !important; 4423 | height: 20px !important; 4424 | } 4425 | .CLASS03802 { 4426 | border: medium none !important; 4427 | } 4428 | .CLASS03803 { 4429 | margin: 5px; 4430 | } 4431 | .CLASS03804 { 4432 | margin-left: 5px; 4433 | } 4434 | .CLASS03805 { 4435 | padding-left: 2px; 4436 | } 4437 | .CLASS03806 { 4438 | height: 15px; 4439 | } 4440 | .CLASS03900 { 4441 | height: 100%; 4442 | margin: 0; 4443 | overflow: hidden; 4444 | padding: 0; 4445 | } 4446 | .CLASS03901 { 4447 | width: 100%; 4448 | } 4449 | .CLASS03902 { 4450 | margin: 0; 4451 | overflow: auto; 4452 | padding: 0; 4453 | width: 100%; 4454 | } 4455 | .CLASS03903 { 4456 | border: 1px solid #000000; 4457 | margin-top: 27px; 4458 | width: 235px; 4459 | } 4460 | .CLASS03904 { 4461 | vertical-align: top; 4462 | } 4463 | .CLASS03905 { 4464 | cursor: pointer; 4465 | vertical-align: middle; 4466 | } 4467 | .CLASS03906 { 4468 | background-color: white; 4469 | text-align: left; 4470 | vertical-align: middle; 4471 | } 4472 | .CLASS03907 { 4473 | height: 50px; 4474 | position: relative; 4475 | width: 50px; 4476 | } 4477 | .CLASS03908 { 4478 | overflow: auto; 4479 | width: 100%; 4480 | } 4481 | .CLASS03909 { 4482 | height: 96%; 4483 | width: 80%; 4484 | } 4485 | .CLASS03910 { 4486 | border: 1px solid #000000; 4487 | height: 50%; 4488 | } 4489 | .CLASS03911 { 4490 | font-size: smaller; 4491 | line-height: 15px; 4492 | } 4493 | .CLASS04000 { 4494 | height: 100%; 4495 | overflow: hidden; 4496 | } 4497 | .CLASS04001 { 4498 | width: 100%; 4499 | } 4500 | .CLASS04002 { 4501 | overflow: auto; 4502 | width: 100%; 4503 | } 4504 | .CLASS04003 { 4505 | height: 96%; 4506 | width: 80%; 4507 | } 4508 | .CLASS04004 { 4509 | border: 1px solid #000000; 4510 | height: 50%; 4511 | } 4512 | .CLASS04005 { 4513 | font-size: smaller; 4514 | line-height: 15px; 4515 | } 4516 | .CLASS04006 { 4517 | border: 1px solid #000000; 4518 | margin-top: 27px; 4519 | } 4520 | .CLASS04007 { 4521 | cursor: pointer; 4522 | } 4523 | .CLASS04100 { 4524 | empty-cells: show; 4525 | text-align: center; 4526 | width: 95%; 4527 | } 4528 | .CLASS04101 { 4529 | height: 40px; 4530 | } 4531 | .CLASS04102 { 4532 | background-color: #5D6373; 4533 | color: white !important; 4534 | font-size: 10pt !important; 4535 | height: 44px !important; 4536 | } 4537 | .CLASS04103 { 4538 | height: auto; 4539 | } 4540 | .CLASS04104 { 4541 | background-color: #5D6373; 4542 | } 4543 | .CLASS04105 { 4544 | cursor: pointer; 4545 | } 4546 | .CLASS04106 { 4547 | width: 100%; 4548 | } 4549 | .CLASS04107 { 4550 | font-size: smaller; 4551 | line-height: 15px; 4552 | } 4553 | .CLASS04108 { 4554 | color: white; 4555 | } 4556 | .CLASS04109 { 4557 | background-color: #5D6373; 4558 | color: white !important; 4559 | } 4560 | .CLASS04110 { 4561 | padding-left: 2px; 4562 | } 4563 | .CLASS04111 { 4564 | height: 15px; 4565 | } 4566 | .CLASS04112 { 4567 | margin: 5px; 4568 | } 4569 | .CLASS04113 { 4570 | margin-left: 5px; 4571 | } 4572 | .CLASS04200 { 4573 | empty-cells: show; 4574 | text-align: center; 4575 | width: 95%; 4576 | } 4577 | .CLASS04202 { 4578 | height: 40px; 4579 | } 4580 | .CLASS04203 { 4581 | font-size: 10pt; 4582 | height: 44px; 4583 | } 4584 | .CLASS04204 { 4585 | font-size: 10pt; 4586 | } 4587 | .CLASS04205 { 4588 | height: auto; 4589 | } 4590 | .CLASS04206 { 4591 | background-color: #5D6373; 4592 | } 4593 | .CLASS04207 { 4594 | cursor: pointer; 4595 | } 4596 | .CLASS04208 { 4597 | width: 100%; 4598 | } 4599 | .CLASS04209 { 4600 | font-size: smaller; 4601 | line-height: 15px; 4602 | } 4603 | .CLASS04210 { 4604 | color: white; 4605 | } 4606 | .CLASS04211 { 4607 | background-color: #5D6373; 4608 | color: white !important; 4609 | } 4610 | .CLASS04212 { 4611 | padding-left: 2px; 4612 | } 4613 | .CLASS04213 { 4614 | margin: 5px; 4615 | } 4616 | .CLASS04214 { 4617 | margin-left: 5px; 4618 | } 4619 | .CLASS04215 { 4620 | height: 15px; 4621 | } 4622 | .CLASS04300 { 4623 | display: none; 4624 | height: 0; 4625 | line-height: 0; 4626 | width: 0; 4627 | } 4628 | .CLASS04301 { 4629 | height: 100%; 4630 | overflow-y: scroll; 4631 | width: 100%; 4632 | } 4633 | .CLASS04302 { 4634 | padding: 10px; 4635 | } 4636 | .CLASS04303 { 4637 | empty-cells: show; 4638 | } 4639 | .CLASS04304 { 4640 | font-size: 10pt; 4641 | height: 40px; 4642 | } 4643 | .CLASS04305 { 4644 | height: 50px; 4645 | position: relative; 4646 | width: 50px; 4647 | } 4648 | .CLASS04306 { 4649 | cursor: pointer; 4650 | height: 100%; 4651 | width: 100%; 4652 | } 4653 | .CLASS04307 { 4654 | cursor: pointer; 4655 | } 4656 | .CLASS04308 { 4657 | margin: 4px; 4658 | } 4659 | .CLASS04309 { 4660 | background-color: #182C6E; 4661 | } 4662 | .CLASS04310 { 4663 | background-color: #182C6E; 4664 | color: #182C6E; 4665 | } 4666 | .CLASS04311 { 4667 | left: 0; 4668 | position: absolute; 4669 | top: 0; 4670 | } 4671 | .CLASS04312 { 4672 | font-size: smaller; 4673 | line-height: 15px; 4674 | } 4675 | .CLASS04313 { 4676 | font-size: smaller; 4677 | } 4678 | .CLASS04314 { 4679 | text-align: left !important; 4680 | } 4681 | .CLASS04401 { 4682 | height: 50px; 4683 | position: relative; 4684 | width: 50px; 4685 | } 4686 | .CLASS04402 { 4687 | text-align: left !important; 4688 | } 4689 | .CLASS04403 { 4690 | height: 100%; 4691 | width: 100%; 4692 | } 4693 | .CLASS04404 { 4694 | cursor: pointer; 4695 | } 4696 | .CLASS04405 { 4697 | height: 50px; 4698 | margin: 0; 4699 | padding: 0; 4700 | position: relative; 4701 | width: 50px; 4702 | } 4703 | .CLASS04500 { 4704 | height: 50px; 4705 | position: relative; 4706 | width: 50px; 4707 | } 4708 | .CLASS04501 { 4709 | text-align: left; 4710 | } 4711 | .CLASS04502 { 4712 | height: 100%; 4713 | width: 100%; 4714 | } 4715 | .CLASS04503 { 4716 | cursor: pointer; 4717 | } 4718 | .CLASS04600 { 4719 | height: 100%; 4720 | overflow-y: scroll; 4721 | width: 100%; 4722 | } 4723 | .CLASS04601 { 4724 | height: 40px; 4725 | } 4726 | .CLASS04602 { 4727 | left: 0; 4728 | position: absolute; 4729 | top: 0; 4730 | } 4731 | .CLASS04603 { 4732 | font-size: smaller; 4733 | line-height: 15px; 4734 | } 4735 | .CLASS04700 { 4736 | height: 50px; 4737 | position: relative; 4738 | width: 50px; 4739 | } 4740 | .CLASS04701 { 4741 | text-align: left; 4742 | } 4743 | .CLASS04800 { 4744 | font-size: smaller; 4745 | line-height: 14px; 4746 | width: 200px; 4747 | } 4748 | .CLASS04801 { 4749 | padding-left: 5px; 4750 | padding-right: 5px; 4751 | width: auto; 4752 | } 4753 | .CLASS04802 { 4754 | color: white !important; 4755 | height: 40px !important; 4756 | } 4757 | .CLASS04803 { 4758 | height: 40px; 4759 | } 4760 | .CLASS04900 { 4761 | color: white; 4762 | font-weight: bold; 4763 | } 4764 | .CLASS04901 { 4765 | height: 40px; 4766 | } 4767 | .CLASS04902 { 4768 | background-color: #F0F0F0; 4769 | width: 220px; 4770 | } 4771 | .CLASS04903 { 4772 | text-align: left; 4773 | } 4774 | .CLASS04904 { 4775 | color: #000000; 4776 | font-size: 12px; 4777 | } 4778 | .CLASS04905 { 4779 | font-size: smaller; 4780 | line-height: 15px; 4781 | width: 220px; 4782 | } 4783 | .CLASS04906 { 4784 | padding-left: 5px; 4785 | padding-right: 5px; 4786 | width: auto; 4787 | } 4788 | .CLASS04907 { 4789 | width: 100px; 4790 | } 4791 | .CLASS05000 { 4792 | background-color: white; 4793 | height: 100%; 4794 | overflow: auto; 4795 | width: 100%; 4796 | } 4797 | .CLASS05001 { 4798 | background-color: #5D6373; 4799 | color: white; 4800 | padding: 10px 0; 4801 | } 4802 | .CLASS05002 { 4803 | color: #000000; 4804 | } 4805 | .CLASS05003 { 4806 | background-color: white; 4807 | cursor: pointer; 4808 | } 4809 | .CLASS05004 { 4810 | background-color: white; 4811 | } 4812 | .CLASS05005 { 4813 | background-color: white; 4814 | color: #000000; 4815 | height: 100%; 4816 | } 4817 | .CLASS05006 { 4818 | padding: 5px; 4819 | } 4820 | .CLASS05007 { 4821 | color: #000000; 4822 | font-size: 9pt; 4823 | } 4824 | .CLASS05008 { 4825 | background-color: #5D6373; 4826 | border: 1px solid #000000; 4827 | color: white; 4828 | cursor: pointer; 4829 | padding: 5px 0; 4830 | } 4831 | .CLASS05009 { 4832 | margin: 5px; 4833 | width: 100px; 4834 | } 4835 | .CLASS05010 { 4836 | color: #000000; 4837 | font-size: 9pt; 4838 | width: 100%; 4839 | } 4840 | .CLASS05011 { 4841 | width: 100%; 4842 | } 4843 | .CLASS05012 { 4844 | color: #000000; 4845 | font-size: 9pt; 4846 | } 4847 | .CLASS05100 { 4848 | background-color: white; 4849 | border: 1px solid #000000; 4850 | color: #000000; 4851 | position: absolute; 4852 | text-align: center; 4853 | vertical-align: middle; 4854 | } 4855 | .CLASS05101 { 4856 | height: 100%; 4857 | vertical-align: middle; 4858 | } 4859 | .CLASS05102 { 4860 | background-color: #5D6373; 4861 | border: 1px solid #000000; 4862 | cursor: pointer; 4863 | } 4864 | .CLASS05103 { 4865 | background-color: white; 4866 | height: 100%; 4867 | overflow: auto; 4868 | width: 100%; 4869 | } 4870 | .CLASS05104 { 4871 | background-color: white; 4872 | color: #000000; 4873 | text-align: left; 4874 | } 4875 | .CLASS05105 { 4876 | text-align: left; 4877 | } 4878 | .CLASS05106 { 4879 | font-size: larger; 4880 | } 4881 | .CLASS05107 { 4882 | border-bottom: 2px solid #000000; 4883 | } 4884 | .CLASS05108 { 4885 | background-color: white; 4886 | border: 0 none; 4887 | color: #000000; 4888 | text-align: left; 4889 | } 4890 | .CLASS05109 { 4891 | height: 22px; 4892 | line-height: 22px; 4893 | margin: 5px; 4894 | width: 100px; 4895 | } 4896 | .CLASS05110 { 4897 | background-color: white; 4898 | border: 0 none; 4899 | color: #000000; 4900 | text-align: left; 4901 | } 4902 | .CLASS05200 { 4903 | font-weight: bold; 4904 | text-align: center; 4905 | vertical-align: middle; 4906 | } 4907 | .CLASS05201 { 4908 | height: 20px; 4909 | } 4910 | .CLASS05202 { 4911 | background-color: #5D6373; 4912 | color: white !important; 4913 | height: 20px !important; 4914 | } 4915 | .CLASS05203 { 4916 | margin: 5px; 4917 | } 4918 | .CLASS05204 { 4919 | margin-left: 5px; 4920 | } 4921 | .CLASS05205 { 4922 | background-color: #5D6373; 4923 | height: 20px !important; 4924 | } 4925 | .CLASS05206 { 4926 | border: 1px solid #000000; 4927 | } 4928 | .CLASS05207 { 4929 | font-size: smaller; 4930 | line-height: 15px; 4931 | } 4932 | .CLASS05208 { 4933 | text-align: left; 4934 | } 4935 | .CLASS05209 { 4936 | border: 1px solid #000000; 4937 | padding-left: 5px; 4938 | text-align: left; 4939 | } 4940 | .CLASS05210 { 4941 | border: medium none !important; 4942 | } 4943 | .CLASS05211 { 4944 | border: medium none !important; 4945 | color: #000000; 4946 | text-align: left !important; 4947 | } 4948 | .CLASS05300 { 4949 | height: 50px; 4950 | } 4951 | .CLASS05301 { 4952 | background-color: #5D6373; 4953 | border: 1px solid #000000; 4954 | height: 38px; 4955 | text-align: center; 4956 | } 4957 | .CLASS05302 { 4958 | height: 80px; 4959 | } 4960 | .CLASS05303 { 4961 | background-color: white; 4962 | } 4963 | .CLASS05304 { 4964 | margin: 5px; 4965 | } 4966 | .CLASS05305 { 4967 | font-size: smaller; 4968 | line-height: 15px; 4969 | } 4970 | .CLASS05400 { 4971 | height: 130px; 4972 | } 4973 | .CLASS05401 { 4974 | height: 160px; 4975 | } 4976 | .CLASS05402 { 4977 | width: 100%; 4978 | } 4979 | .CLASS05403 { 4980 | text-align: center !important; 4981 | } 4982 | .CLASS05500 { 4983 | height: 50%; 4984 | } 4985 | .CLASS05501 { 4986 | background-color: #182C6E; 4987 | } 4988 | .CLASS05600 { 4989 | border: 1px solid #000000; 4990 | margin-left: 20px; 4991 | margin-top: 20px; 4992 | } 4993 | .CLASS05601 { 4994 | background-color: #5D6373; 4995 | border-right: 1px solid Black; 4996 | height: 5px; 4997 | width: 50%; 4998 | } 4999 | .CLASS05602 { 5000 | background-color: #5D6373; 5001 | border-left: 1px solid #000000; 5002 | height: 5px; 5003 | width: 50%; 5004 | } 5005 | .CLASS05603 { 5006 | background-color: #9BA6BF; 5007 | border: 1px solid #000000; 5008 | color: #000000; 5009 | width: 100%; 5010 | } 5011 | .CLASS05604 { 5012 | border: 1px solid #000000; 5013 | margin-bottom: 20px; 5014 | margin-left: 20px; 5015 | } 5016 | .CLASS05605 { 5017 | background-color: #5D6373; 5018 | border-right: 1px solid #000000; 5019 | height: 5px; 5020 | width: 170px; 5021 | } 5022 | .CLASS05606 { 5023 | background-color: #5D6373; 5024 | border-left: 1px solid #000000; 5025 | height: 5px; 5026 | width: 170px; 5027 | } 5028 | .CLASS05607 { 5029 | background-color: #F0F0F0; 5030 | border: 1px solid #000000; 5031 | height: 80px; 5032 | } 5033 | .CLASS05608 { 5034 | background-image: url("/ise/img/btn_fav.png"); 5035 | background-repeat: no-repeat; 5036 | cursor: pointer; 5037 | height: 74px; 5038 | text-align: center; 5039 | width: 170px; 5040 | } 5041 | .CLASS05609 { 5042 | background-color: #9BA6BF; 5043 | border: 1px solid #000000; 5044 | color: #000000; 5045 | padding: 6px; 5046 | width: 170px; 5047 | } 5048 | .CLASS05610 { 5049 | margin-top: 20px; 5050 | } 5051 | .CLASS05700 { 5052 | width: 1257px !important; 5053 | } 5054 | .CLASS05701 { 5055 | height: 50%; 5056 | } 5057 | .CLASS05702 { 5058 | background-color: #182C6E !important; 5059 | } 5060 | .CLASS05703 { 5061 | padding-left: 4px; 5062 | width: 592px; 5063 | } 5064 | .CLASS05704 { 5065 | background: none repeat scroll 0 0 #5D6373; 5066 | border: 1px solid #000000; 5067 | color: white; 5068 | cursor: pointer; 5069 | margin-top: 5px; 5070 | text-align: center; 5071 | width: 200px; 5072 | } 5073 | .CLASS05705 { 5074 | font-size: 9pt; 5075 | width: 572px; 5076 | } 5077 | .CLASS05706 { 5078 | border-top: 1px solid #000000; 5079 | height: 262px; 5080 | overflow: auto; 5081 | padding-left: 4px; 5082 | width: 592px; 5083 | } 5084 | .CLASS05707 { 5085 | font-size: 9pt; 5086 | width: 570px; 5087 | } 5088 | .CLASS05800 { 5089 | text-align: center; 5090 | width: 100%; 5091 | } 5092 | .CLASS05801 { 5093 | width: 100%; 5094 | } 5095 | .CLASS05802 { 5096 | height: 10px; 5097 | width: 1px; 5098 | } 5099 | .CLASS05900 { 5100 | margin-top: 20px; 5101 | } 5102 | .CLASS05901 { 5103 | border: 1px solid #000000; 5104 | margin-bottom: 20px; 5105 | margin-left: 20px; 5106 | } 5107 | .CLASS05902 { 5108 | background-color: #5D6373; 5109 | border-right: 1px solid #000000; 5110 | height: 5px; 5111 | width: 170px; 5112 | } 5113 | .CLASS05903 { 5114 | background-color: #5D6373; 5115 | border-left: 1px solid #000000; 5116 | height: 5px; 5117 | width: 170px; 5118 | } 5119 | .CLASS05904 { 5120 | background-color: white; 5121 | border: 1px solid #000000; 5122 | height: 80px; 5123 | } 5124 | .CLASS05905 { 5125 | background-image: url("/ise/img/btn_fav.png"); 5126 | background-repeat: no-repeat; 5127 | cursor: pointer; 5128 | height: 74px; 5129 | text-align: center; 5130 | width: 170px; 5131 | } 5132 | .CLASS05906 { 5133 | background-color: #9BA6BF; 5134 | border: 1px solid #000000; 5135 | color: #000000; 5136 | padding: 6px; 5137 | width: 170px; 5138 | } 5139 | .CLASS05907 { 5140 | border: 1px solid #000000; 5141 | margin-left: 20px; 5142 | margin-top: 20px; 5143 | } 5144 | .CLASS05908 { 5145 | background-color: #5D6373; 5146 | border-right: 1px solid #000000; 5147 | height: 5px; 5148 | width: 50%; 5149 | } 5150 | .CLASS05909 { 5151 | background-color: #5D6373; 5152 | border-left: 1px solid #000000; 5153 | height: 5px; 5154 | width: 50%; 5155 | } 5156 | .CLASS05910 { 5157 | background-color: #9BA6BF; 5158 | border: 1px solid #000000; 5159 | color: #000000; 5160 | width: 100%; 5161 | } 5162 | .CLASS06100 { 5163 | height: 50%; 5164 | } 5165 | .CLASS06101 { 5166 | background-color: #182C6E !important; 5167 | } 5168 | .CLASS06200 { 5169 | border: 1px solid #000000; 5170 | margin-left: 15px; 5171 | text-align: center; 5172 | width: 80%; 5173 | } 5174 | .CLASS06201 { 5175 | height: 50px; 5176 | } 5177 | .CLASS06202 { 5178 | height: 80px; 5179 | } 5180 | .CLASS06203 { 5181 | background-color: white; 5182 | } 5183 | .CLASS06204 { 5184 | margin: 5px; 5185 | } 5186 | .CLASS06300 { 5187 | margin: 20px; 5188 | } 5189 | .CLASS06301 { 5190 | color: white; 5191 | } 5192 | .CLASS06302 { 5193 | background-color: #5D6373; 5194 | border: 1px solid #000000; 5195 | color: white; 5196 | cursor: pointer; 5197 | font-size: small; 5198 | height: 24px; 5199 | text-align: center; 5200 | width: 200px; 5201 | } 5202 | .CLASS06303 { 5203 | background-color: #5D6373; 5204 | border: 1px solid #000000; 5205 | color: white; 5206 | cursor: pointer; 5207 | font-size: small; 5208 | height: 24px; 5209 | text-align: center; 5210 | width: 240px; 5211 | } 5212 | .CLASS06304 { 5213 | background-color: #5D6373; 5214 | border: 1px solid #000000; 5215 | color: white; 5216 | cursor: pointer; 5217 | font-size: small; 5218 | height: 24px; 5219 | text-align: center; 5220 | width: 220px; 5221 | } 5222 | .CLASS06305 { 5223 | width: 100%; 5224 | } 5225 | .CLASS06306 { 5226 | border-bottom: 5px solid white !important; 5227 | width: 100%; 5228 | } 5229 | .CLASS06307 { 5230 | width: 420px; 5231 | } 5232 | .CLASS06308 { 5233 | height: 100%; 5234 | width: 100%; 5235 | } 5236 | .CLASS06309 { 5237 | padding-left: 2px; 5238 | } 5239 | .CLASS06310 { 5240 | height: 15px; 5241 | } 5242 | .CLASS06311 { 5243 | border: 1px solid #000000; 5244 | width: 170px; 5245 | } 5246 | .CLASS06312 { 5247 | width: 170px; 5248 | } 5249 | .CLASS06313 { 5250 | color: #000000; 5251 | font-weight: bold; 5252 | text-align: center; 5253 | } 5254 | .CLASS06314 { 5255 | color: #000000; 5256 | font-weight: bold; 5257 | text-align: center; 5258 | } 5259 | .CLASS06315 { 5260 | background-image: url("/ise/img/btn_fav_up.png"); 5261 | background-repeat: no-repeat; 5262 | cursor: pointer; 5263 | height: 38px; 5264 | width: 85px; 5265 | } 5266 | .CLASS06316 { 5267 | background-image: url("/ise/img/btn_fav_down.png"); 5268 | background-repeat: no-repeat; 5269 | cursor: pointer; 5270 | height: 38px; 5271 | width: 85px; 5272 | } 5273 | .CLASS06317 { 5274 | text-align: left; 5275 | width: 50px; 5276 | } 5277 | .CLASS06318 { 5278 | height: 50px; 5279 | margin: 0; 5280 | padding: 0; 5281 | position: relative; 5282 | width: 50px; 5283 | } 5284 | .CLASS06319 { 5285 | padding-left: 8px; 5286 | text-align: left; 5287 | } 5288 | .CLASS06320 { 5289 | color: #000000; 5290 | } 5291 | .CLASS06321 { 5292 | background-color: #F0F0F0; 5293 | } 5294 | .CLASS06322 { 5295 | margin: 5px; 5296 | } 5297 | .CLASS06323 { 5298 | background-color: white; 5299 | border: 1px solid #000000; 5300 | left: 0; 5301 | position: absolute; 5302 | top: 0; 5303 | } 5304 | .CLASS06324 { 5305 | background-color: #5D6373; 5306 | border: 1px solid #000000; 5307 | color: white; 5308 | height: 20px; 5309 | text-align: center; 5310 | width: auto; 5311 | } 5312 | .CLASS06325 { 5313 | background-color: white; 5314 | border: 1px solid #000000; 5315 | left: 0; 5316 | position: absolute; 5317 | top: 0; 5318 | } 5319 | .CLASS06326 { 5320 | background-color: #5D6373; 5321 | border: 1px solid #000000; 5322 | color: white; 5323 | height: 20px; 5324 | text-align: center; 5325 | width: auto; 5326 | } 5327 | .CLASS06327 { 5328 | font-size: smaller; 5329 | line-height: 15px; 5330 | width: 240px; 5331 | } 5332 | .CLASS06328 { 5333 | border: 1px solid #000000; 5334 | height: 100px; 5335 | width: 100%; 5336 | } 5337 | .CLASS06329 { 5338 | background-color: #5D6373; 5339 | border: 1px solid #000000; 5340 | color: white; 5341 | height: 40px; 5342 | } 5343 | .CLASS06330 { 5344 | background-color: #F0F0F0; 5345 | border: 1px solid #000000; 5346 | color: #000000; 5347 | text-align: center; 5348 | } 5349 | .CLASS06331 { 5350 | background-color: #9BA6BF; 5351 | border: 1px solid #000000; 5352 | color: #000000; 5353 | text-align: center; 5354 | } 5355 | .CLASS06332 { 5356 | margin: 5px; 5357 | } 5358 | .CLASS06333 { 5359 | margin-left: 5px; 5360 | } 5361 | .CLASS06334 { 5362 | padding: 5px; 5363 | } 5364 | .CLASS06335 { 5365 | text-align: center; 5366 | } 5367 | .CLASS06336 { 5368 | background-color: #9BA6BF; 5369 | } 5370 | .CLASS06337 { 5371 | background-color: #5D6373; 5372 | } 5373 | .CLASS06400 { 5374 | border: 1px solid #000000; 5375 | margin-left: 20px; 5376 | margin-top: 20px; 5377 | } 5378 | .CLASS06401 { 5379 | background-color: #5D6373; 5380 | border-right: 1px solid #000000; 5381 | height: 5px; 5382 | width: 50%; 5383 | } 5384 | .CLASS06402 { 5385 | background-color: #5D6373; 5386 | border-left: 1px solid #000000; 5387 | height: 5px; 5388 | width: 50%; 5389 | } 5390 | .CLASS06403 { 5391 | background-color: #9BA6BF; 5392 | border: 1px solid #000000; 5393 | color: #000000; 5394 | width: 100%; 5395 | } 5396 | .CLASS06404 { 5397 | font-weight: bold; 5398 | text-align: center; 5399 | } 5400 | .CLASS06405 { 5401 | background-color: #5D6373 !important; 5402 | border: 1px solid #000000 !important; 5403 | color: white !important; 5404 | cursor: pointer; 5405 | height: 20px !important; 5406 | text-align: center !important; 5407 | } 5408 | .CLASS06406 { 5409 | padding-left: 2px; 5410 | } 5411 | .CLASS06407 { 5412 | height: 15px; 5413 | } 5414 | .CLASS06408 { 5415 | background-color: #5D6373; 5416 | border: 1px solid #000000; 5417 | color: white; 5418 | height: auto !important; 5419 | text-align: center; 5420 | } 5421 | .CLASS06409 { 5422 | margin: 5px; 5423 | } 5424 | .CLASS06410 { 5425 | margin-left: 5px; 5426 | } 5427 | .CLASS06411 { 5428 | text-align: left; 5429 | } 5430 | .CLASS06412 { 5431 | background-color: #F0F0F0; 5432 | border: 1px solid gray; 5433 | color: white; 5434 | margin: 5px; 5435 | } 5436 | .CLASS06413 { 5437 | font-size: smaller; 5438 | line-height: 15px; 5439 | } 5440 | .CLASS06414 { 5441 | height: 51px; 5442 | } 5443 | .CLASS10100 { 5444 | border: 1px solid; 5445 | margin-left: 6px; 5446 | } 5447 | .CLASS10101 { 5448 | background-color: gray; 5449 | border: 1px solid black; 5450 | color: white; 5451 | cursor: pointer; 5452 | font-family: arial; 5453 | font-size: 10pt; 5454 | margin: 1px; 5455 | padding: 0 5px; 5456 | vertical-align: middle; 5457 | width: auto; 5458 | } 5459 | .CLASS10102 { 5460 | background-color: #9BA6BF; 5461 | padding: 6px; 5462 | } 5463 | .CLASS10103 { 5464 | background-color: #9BA6BF; 5465 | padding: 6px; 5466 | text-align: right; 5467 | } 5468 | .CLASS10200 { 5469 | background-color: white; 5470 | border: 1px solid #000000; 5471 | padding: 10px; 5472 | } 5473 | .CLASS10300 { 5474 | border: 0 none; 5475 | padding-bottom: 20px; 5476 | padding-top: 20px; 5477 | text-align: center; 5478 | vertical-align: top; 5479 | width: 100%; 5480 | } 5481 | .CLASS10301 { 5482 | color: red; 5483 | font-weight: bold; 5484 | } 5485 | .CLASS10302 { 5486 | border: 3px solid #000000; 5487 | padding: 5px; 5488 | } 5489 | .CLASS10400 { 5490 | background-color: gray; 5491 | height: 10px; 5492 | } 5493 | .CLASS10500 { 5494 | height: 100%; 5495 | overflow: scroll; 5496 | width: 100%; 5497 | } 5498 | .CLASS10600 { 5499 | background-color: white; 5500 | } 5501 | .CLASS10700 { 5502 | height: 20px; 5503 | } 5504 | .CLASS10800 { 5505 | border: 2px solid #000000; 5506 | height: 250px; 5507 | line-height: 250px; 5508 | text-align: center; 5509 | width: 250px; 5510 | } 5511 | .CLASS10801 { 5512 | height: 250px; 5513 | margin: 0; 5514 | overflow: hidden; 5515 | position: relative; 5516 | width: 250px; 5517 | } 5518 | .CLASS10802 { 5519 | text-align: center; 5520 | width: 250px; 5521 | } 5522 | .CLASS10803 { 5523 | width: 200px; 5524 | } 5525 | .CLASS10804 { 5526 | font-weight: bold; 5527 | } 5528 | .CLASS10805 { 5529 | text-align: justify; 5530 | } 5531 | .CLASS10900 { 5532 | height: 1px; 5533 | width: 25px; 5534 | } 5535 | .CLASS10901 { 5536 | height: 20px; 5537 | } 5538 | .CLASS10902 { 5539 | background-color: #C0C0C0; 5540 | border: 1px solid gray; 5541 | color: #F0F0F0; 5542 | cursor: default; 5543 | } 5544 | .CLASS10903 { 5545 | height: 3px; 5546 | } 5547 | .CLASS10904 { 5548 | height: 1px; 5549 | overflow: hidden; 5550 | width: 25px; 5551 | } 5552 | .CLASS10905 { 5553 | height: 1px; 5554 | overflow: hidden; 5555 | width: 1px; 5556 | } 5557 | .CLASS10906 { 5558 | border-right: 0 none; 5559 | } 5560 | .CLASS10907 { 5561 | border-left: 0 none; 5562 | border-right: 0 none; 5563 | } 5564 | .CLASS10908 { 5565 | border-left: 0 none; 5566 | } 5567 | .CLASS10909 { 5568 | height: 1px; 5569 | overflow: hidden; 5570 | width: 55px; 5571 | } 5572 | .CLASS11000 { 5573 | border: 2px solid #000000; 5574 | height: 250px; 5575 | line-height: 250px; 5576 | text-align: center; 5577 | width: 250px; 5578 | } 5579 | .CLASS11001 { 5580 | height: 250px; 5581 | margin: 0; 5582 | overflow: hidden; 5583 | position: relative; 5584 | width: 250px; 5585 | } 5586 | .CLASS11002 { 5587 | text-align: center; 5588 | width: 250px; 5589 | } 5590 | .CLASS11003 { 5591 | font-weight: bold; 5592 | } 5593 | .CLASS11004 { 5594 | text-align: justify; 5595 | } 5596 | .CLASS11005 { 5597 | width: 200px; 5598 | } 5599 | .CLASS11006 { 5600 | cursor: pointer; 5601 | float: left; 5602 | margin-bottom: 5px; 5603 | margin-right: 5px; 5604 | } 5605 | .CLASS11007 { 5606 | font-weight: bold; 5607 | line-height: 16px; 5608 | margin-bottom: 5px; 5609 | } 5610 | .CLASS11100 { 5611 | text-align: center; 5612 | width: 80px; 5613 | } 5614 | .CLASS11101 { 5615 | vertical-align: middle; 5616 | } 5617 | .CLASS11102 { 5618 | width: 100%; 5619 | } 5620 | .CLASS11103 { 5621 | vertical-align: bottom; 5622 | } 5623 | .CLASS11104 { 5624 | padding-top: 7px; 5625 | text-align: right; 5626 | } 5627 | .CLASS11105 { 5628 | padding-right: 8px; 5629 | padding-top: 7px; 5630 | } 5631 | .CLASS11106 { 5632 | width: 25px; 5633 | } 5634 | .CLASS11107 { 5635 | width: 100%; 5636 | } 5637 | .CLASS11108 { 5638 | cursor: pointer; 5639 | } 5640 | .CLASS11109 { 5641 | padding-right: 14px; 5642 | padding-top: 6px; 5643 | } 5644 | .CLASS20001 { 5645 | padding: 4px; 5646 | } 5647 | .CLASS20002 { 5648 | border: 0 none; 5649 | } 5650 | .CLASS20003 { 5651 | height: 165px; 5652 | } 5653 | .CLASS20004 { 5654 | border-bottom: 0 none; 5655 | padding: 4px; 5656 | vertical-align: top; 5657 | } 5658 | .CLASS20005 { 5659 | border-top: 0 none; 5660 | } 5661 | .CLASS20006 { 5662 | width: 85% !important; 5663 | } 5664 | .CLASS20007 { 5665 | border-bottom: 0 none; 5666 | } 5667 | .CLASS20008 { 5668 | height: 50px; 5669 | } 5670 | .CLASS20009 { 5671 | background-color: gray; 5672 | border: 1px solid #000000; 5673 | color: white; 5674 | cursor: pointer; 5675 | margin: 2px; 5676 | padding: 5px; 5677 | text-align: center; 5678 | vertical-align: middle; 5679 | } 5680 | .CLASS20010 { 5681 | width: 150px; 5682 | } 5683 | .CLASS20100 { 5684 | color: red; 5685 | } 5686 | .CLASS20200 { 5687 | color: red; 5688 | text-decoration: blink; 5689 | } 5690 | .CLASS20300 { 5691 | color: windowtext; 5692 | } 5693 | .CLASS20400 { 5694 | background-color: gray; 5695 | } 5696 | .CLASS20500 { 5697 | color: red; 5698 | font-weight: bold; 5699 | text-decoration: blink; 5700 | } 5701 | .CLASS20600 { 5702 | background-color: #000000; 5703 | color: #000000; 5704 | height: 1px; 5705 | } 5706 | .CLASS20700 { 5707 | padding: 10px; 5708 | text-align: center; 5709 | } 5710 | .CLASS20800 { 5711 | height: 100%; 5712 | overflow: auto; 5713 | width: 100%; 5714 | } 5715 | .CLASS20801 { 5716 | background-color: white; 5717 | color: #000000; 5718 | font-size: 8pt; 5719 | } 5720 | .CLASS20802 { 5721 | background-color: white; 5722 | color: #000000; 5723 | padding: 10px 0; 5724 | } 5725 | .CLASS20803 { 5726 | border: 0 none; 5727 | width: 10%; 5728 | } 5729 | .CLASS20804 { 5730 | margin: 5px; 5731 | width: 100px; 5732 | } 5733 | .CLASS20805 { 5734 | font-size: 8pt; 5735 | } 5736 | .CLASS20806 { 5737 | padding: 10px 0; 5738 | } 5739 | .CLASS20807 { 5740 | background-color: #5D6373; 5741 | color: white; 5742 | font-size: 10pt; 5743 | vertical-align: middle; 5744 | } 5745 | .CLASS20808 { 5746 | background-color: white; 5747 | color: #000000; 5748 | } 5749 | .CLASS20809 { 5750 | border: 0 none; 5751 | color: red; 5752 | } 5753 | .CLASS20810 { 5754 | background-color: white; 5755 | color: #000000; 5756 | font-size: 8pt; 5757 | } 5758 | .CLASS20811 { 5759 | border: 0 none; 5760 | } 5761 | .CLASS20812 { 5762 | color: #000000; 5763 | } 5764 | .CLASS20813 { 5765 | margin: 5px; 5766 | width: 200px; 5767 | } 5768 | .CLASS20814 { 5769 | color: red; 5770 | } 5771 | .CLASS20815 { 5772 | background-color: white; 5773 | height: 100%; 5774 | overflow: auto; 5775 | width: 100%; 5776 | } 5777 | .CLASS20816 { 5778 | background-color: white; 5779 | color: red; 5780 | } 5781 | .CLASS20817 { 5782 | background-color: white; 5783 | color: #000000; 5784 | font-size: 8pt; 5785 | } 5786 | .CLASS20818 { 5787 | margin: 5px; 5788 | width: 100px; 5789 | } 5790 | .CLASS20819 { 5791 | padding: 5px; 5792 | } 5793 | .CLASS20820 { 5794 | height: 100px; 5795 | width: 400px; 5796 | } 5797 | .CLASS20900 { 5798 | height: 100%; 5799 | overflow: auto; 5800 | width: 100%; 5801 | } 5802 | .CLASS20901 { 5803 | font-size: 8pt; 5804 | } 5805 | .CLASS20902 { 5806 | padding: 10px 0; 5807 | } 5808 | .CLASS20903 { 5809 | background-color: #5D6373; 5810 | color: white; 5811 | font-size: 10pt; 5812 | vertical-align: middle; 5813 | } 5814 | .CLASS20904 { 5815 | background-color: white; 5816 | color: #000000; 5817 | } 5818 | .CLASS20905 { 5819 | border: 0 none; 5820 | } 5821 | .CLASS20906 { 5822 | margin: 5px; 5823 | width: 150px; 5824 | } 5825 | .CLASS20907 { 5826 | border: 0 none; 5827 | width: 10%; 5828 | } 5829 | .CLASS20908 { 5830 | margin: 5px; 5831 | width: 100px; 5832 | } 5833 | .CLASS20909 { 5834 | background-color: white; 5835 | color: #000000; 5836 | font-size: 8pt; 5837 | } 5838 | .CLASS20910 { 5839 | margin: 5px; 5840 | width: 200px; 5841 | } 5842 | .CLASS20911 { 5843 | color: #000000; 5844 | } 5845 | .CLASS20912 { 5846 | border: 0 none; 5847 | color: red; 5848 | } 5849 | .CLASS20913 { 5850 | background-color: white; 5851 | color: #000000; 5852 | font-size: 8pt; 5853 | width: 100%; 5854 | } 5855 | .CLASS20914 { 5856 | text-align: justify; 5857 | } 5858 | .CLASS20915 { 5859 | text-align: left; 5860 | } 5861 | .CLASS20916 { 5862 | background-color: white; 5863 | color: #000000; 5864 | font-size: 8pt; 5865 | } 5866 | .CLASS20917 { 5867 | background-color: white; 5868 | color: #000000; 5869 | padding: 10px 0; 5870 | } 5871 | .CLASS20918 { 5872 | background-color: white; 5873 | height: 100%; 5874 | overflow: auto; 5875 | width: 100%; 5876 | } 5877 | .CLASS20919 { 5878 | margin: 5px; 5879 | width: 100px; 5880 | } 5881 | .CLASS20920 { 5882 | color: gray; 5883 | } 5884 | .CLASS20921 { 5885 | background-color: white; 5886 | color: red; 5887 | } 5888 | .CLASS21000 { 5889 | background-color: gray; 5890 | border: 1px solid #000000; 5891 | color: white; 5892 | cursor: pointer; 5893 | margin: 2px; 5894 | padding: 5px; 5895 | text-align: center; 5896 | vertical-align: middle; 5897 | } 5898 | .CLASS21100 { 5899 | height: 100%; 5900 | overflow: auto; 5901 | width: 100%; 5902 | } 5903 | .CLASS21101 { 5904 | background-color: white; 5905 | color: #000000; 5906 | font-size: 8pt; 5907 | } 5908 | .CLASS21102 { 5909 | background-color: white; 5910 | color: #000000; 5911 | padding: 10px 0; 5912 | } 5913 | .CLASS21103 { 5914 | border: 0 none; 5915 | width: 10%; 5916 | } 5917 | .CLASS21104 { 5918 | margin: 5px; 5919 | width: 100px; 5920 | } 5921 | .CLASS21105 { 5922 | font-size: 8pt; 5923 | } 5924 | .CLASS21106 { 5925 | background-color: white; 5926 | color: #000000; 5927 | font-size: 8pt; 5928 | width: 100%; 5929 | } 5930 | .CLASS21107 { 5931 | border: 0 none; 5932 | } 5933 | .CLASS21108 { 5934 | margin: 5px; 5935 | width: 100px; 5936 | } 5937 | .CLASS21109 { 5938 | border: 0 none; 5939 | width: 80%; 5940 | } 5941 | .CLASS21110 { 5942 | margin: 5px; 5943 | width: 150px; 5944 | } 5945 | .CLASS21111 { 5946 | background-color: white; 5947 | color: #000000; 5948 | font-size: 8pt; 5949 | } 5950 | .CLASS21112 { 5951 | color: #000000; 5952 | } 5953 | .CLASS21113 { 5954 | background-color: white; 5955 | color: #000000; 5956 | } 5957 | .CLASS21114 { 5958 | background-color: white; 5959 | height: 100%; 5960 | overflow: auto; 5961 | width: 100%; 5962 | } 5963 | .CLASS21115 { 5964 | background-color: white; 5965 | color: #000000; 5966 | padding: 10px 0; 5967 | } 5968 | .CLASS21116 { 5969 | background-color: #5D6373; 5970 | color: white; 5971 | font-size: 10pt; 5972 | vertical-align: middle; 5973 | } 5974 | .CLASS21117 { 5975 | margin: 5px; 5976 | width: 200px; 5977 | } 5978 | .CLASS21118 { 5979 | color: gray; 5980 | } 5981 | .CLASS21119 { 5982 | padding: 10px 0; 5983 | } 5984 | .CLASS21200 { 5985 | background-color: white; 5986 | height: 100%; 5987 | overflow: auto; 5988 | width: 100%; 5989 | } 5990 | .CLASS21201 { 5991 | font-size: 8pt; 5992 | } 5993 | .CLASS21202 { 5994 | padding: 10px 0; 5995 | } 5996 | .CLASS21203 { 5997 | background-color: white; 5998 | color: #000000; 5999 | vertical-align: top; 6000 | } 6001 | .CLASS21204 { 6002 | color: #000000; 6003 | font-size: 8pt; 6004 | } 6005 | .CLASS21205 { 6006 | background-color: #9BA6BF; 6007 | border: 0 none; 6008 | } 6009 | .CLASS21206 { 6010 | border: 0 none; 6011 | width: 80%; 6012 | } 6013 | .CLASS21207 { 6014 | background-color: #5D6373; 6015 | color: white; 6016 | font-size: 10pt; 6017 | vertical-align: middle; 6018 | } 6019 | .CLASS21208 { 6020 | background-color: #9BA6BF; 6021 | color: #000000; 6022 | vertical-align: top; 6023 | } 6024 | .CLASS21209 { 6025 | border: 0 none; 6026 | width: 10%; 6027 | } 6028 | .CLASS21210 { 6029 | margin: 5px; 6030 | width: 100px; 6031 | } 6032 | .CLASS21211 { 6033 | font-weight: bold; 6034 | } 6035 | .CLASS21212 { 6036 | background-color: #5D6373; 6037 | color: white; 6038 | font-size: 10pt; 6039 | vertical-align: middle; 6040 | } 6041 | .CLASS21213 { 6042 | height: 30px; 6043 | margin: 5px; 6044 | width: 100px; 6045 | } 6046 | .CLASS21214 { 6047 | height: 30px; 6048 | margin: 5px; 6049 | width: 200px; 6050 | } 6051 | .CLASS21215 { 6052 | background-color: white !important; 6053 | color: #000000 !important; 6054 | } 6055 | .CLASS21216 { 6056 | height: 30px; 6057 | margin: 5px; 6058 | width: 150px; 6059 | } 6060 | .CLASS21300 { 6061 | height: 56%; 6062 | } 6063 | .CLASS21301 { 6064 | background-color: #9BA6BF; 6065 | vertical-align: top; 6066 | } 6067 | .CLASS21302 { 6068 | color: #000000; 6069 | font-size: 20px; 6070 | margin: 5px; 6071 | text-align: center; 6072 | } 6073 | .CLASS21303 { 6074 | color: #000000; 6075 | text-align: center; 6076 | width: 100%; 6077 | } 6078 | .CLASS21304 { 6079 | color: #000000; 6080 | } 6081 | .CLASS21305 { 6082 | background-color: #9BA6BF; 6083 | text-align: center; 6084 | vertical-align: top; 6085 | } 6086 | .CLASS21306 { 6087 | vertical-align: top; 6088 | } 6089 | .CLASS21400 { 6090 | height: 100%; 6091 | overflow: auto; 6092 | width: 100%; 6093 | } 6094 | .CLASS21401 { 6095 | background-color: white; 6096 | color: #000000; 6097 | font-size: 8pt; 6098 | } 6099 | .CLASS21402 { 6100 | background-color: white; 6101 | color: #000000; 6102 | padding: 10px 0; 6103 | } 6104 | .CLASS21403 { 6105 | border: 0 none; 6106 | width: 10%; 6107 | } 6108 | .CLASS21404 { 6109 | margin: 5px; 6110 | width: 100px; 6111 | } 6112 | .CLASS21405 { 6113 | font-size: 8pt; 6114 | } 6115 | .CLASS21406 { 6116 | background-color: white; 6117 | height: 250px; 6118 | overflow: auto; 6119 | width: 100%; 6120 | } 6121 | .CLASS21407 { 6122 | padding: 10px 0; 6123 | } 6124 | .CLASS21408 { 6125 | background-color: #5D6373; 6126 | color: white; 6127 | font-size: 10pt; 6128 | vertical-align: middle; 6129 | } 6130 | .CLASS21409 { 6131 | background-color: white; 6132 | color: #000000; 6133 | } 6134 | .CLASS21410 { 6135 | background-color: white; 6136 | color: #000000; 6137 | font-size: 8pt; 6138 | } 6139 | .CLASS21411 { 6140 | border: 0 none; 6141 | } 6142 | .CLASS21412 { 6143 | margin: 5px; 6144 | width: 200px; 6145 | } 6146 | .CLASS21413 { 6147 | border: 0 none; 6148 | color: red; 6149 | } 6150 | .CLASS21500 { 6151 | background-color: white; 6152 | height: 100%; 6153 | overflow: auto; 6154 | width: 100%; 6155 | } 6156 | .CLASS21501 { 6157 | font-size: 8pt; 6158 | } 6159 | .CLASS21502 { 6160 | padding: 10px 0; 6161 | } 6162 | .CLASS21503 { 6163 | background-color: #5D6373; 6164 | color: white; 6165 | font-size: 10pt; 6166 | vertical-align: middle; 6167 | } 6168 | .CLASS21504 { 6169 | background-color: white; 6170 | color: #000000; 6171 | } 6172 | .CLASS21505 { 6173 | background-color: white; 6174 | color: #000000; 6175 | font-size: 8pt; 6176 | } 6177 | .CLASS21506 { 6178 | border: 0 none; 6179 | } 6180 | .CLASS21507 { 6181 | margin: 5px; 6182 | width: 200px; 6183 | } 6184 | .CLASS21508 { 6185 | border: 0 none; 6186 | width: 10%; 6187 | } 6188 | .CLASS21509 { 6189 | margin: 5px; 6190 | width: 100px; 6191 | } 6192 | .CLASS21510 { 6193 | color: #000000; 6194 | } 6195 | .CLASS21600 { 6196 | background-color: white; 6197 | height: 100%; 6198 | overflow: auto; 6199 | width: 100%; 6200 | } 6201 | .CLASS21601 { 6202 | font-size: 8pt; 6203 | } 6204 | .CLASS21602 { 6205 | padding: 10px 0; 6206 | } 6207 | .CLASS21603 { 6208 | background-color: white; 6209 | color: #000000; 6210 | vertical-align: top; 6211 | } 6212 | .CLASS21604 { 6213 | color: #000000; 6214 | font-size: 8pt; 6215 | } 6216 | .CLASS21605 { 6217 | border: 0 none; 6218 | width: 10%; 6219 | } 6220 | .CLASS21606 { 6221 | margin: 5px; 6222 | width: 100px; 6223 | } 6224 | .CLASS21607 { 6225 | border: 0 none; 6226 | width: 70%; 6227 | } 6228 | .CLASS21700 { 6229 | height: 50%; 6230 | } 6231 | .CLASS21701 { 6232 | height: 70px; 6233 | line-height: 70px; 6234 | } 6235 | .CLASS21702 { 6236 | background-color: #182C6E !important; 6237 | } 6238 | .CLASS21703 { 6239 | height: 70px; 6240 | line-height: 35px; 6241 | } 6242 | .CLASS21800 { 6243 | cursor: pointer; 6244 | font-size: 12px; 6245 | font-weight: bold; 6246 | width: 100%; 6247 | } 6248 | .CLASS21801 { 6249 | border-bottom: 4px solid gray; 6250 | } 6251 | .CLASS21802 { 6252 | background-color: infobackground; 6253 | border: 2px solid #F0F0F0; 6254 | height: 28px; 6255 | left: 300px; 6256 | padding: 6px; 6257 | position: absolute; 6258 | top: 0; 6259 | } 6260 | .CLASS21803 { 6261 | margin: 4px; 6262 | } 6263 | .CLASS21804 { 6264 | border: 1px solid #000066; 6265 | height: 200px; 6266 | width: 200px; 6267 | } 6268 | .CLASS21805 { 6269 | background-color: white; 6270 | } 6271 | .CLASS21806 { 6272 | color: red; 6273 | } 6274 | .CLASS21807 { 6275 | background-color: white; 6276 | } 6277 | .CLASS21900 { 6278 | padding: 4px; 6279 | } 6280 | .CLASS21901 { 6281 | font-size: smaller; 6282 | line-height: 15px; 6283 | } 6284 | .CLASS21902 { 6285 | width: 100%; 6286 | } 6287 | .CLASS21903 { 6288 | width: 10%; 6289 | } 6290 | .CLASS21904 { 6291 | background-color: #5D6373; 6292 | border: 1px solid #000000; 6293 | color: white; 6294 | cursor: pointer; 6295 | } 6296 | .CLASS21905 { 6297 | width: 80%; 6298 | } 6299 | .CLASS21906 { 6300 | color: red; 6301 | font-size: large; 6302 | font-weight: bold; 6303 | } 6304 | .CLASS21907 { 6305 | height: 50px; 6306 | margin: 0; 6307 | padding: 0; 6308 | position: relative; 6309 | width: 50px; 6310 | } 6311 | .CLASS21908 { 6312 | background-color: #182C6E; 6313 | overflow: auto; 6314 | width: 100%; 6315 | } 6316 | .CLASS21909 { 6317 | font-size: x-small; 6318 | line-height: 15px; 6319 | } 6320 | .CLASS21910 { 6321 | font-size: xx-small; 6322 | line-height: 10px; 6323 | } 6324 | .CLASS21911 { 6325 | width: 70%; 6326 | } 6327 | .CLASS21912 { 6328 | position: relative; 6329 | } 6330 | .CLASS21913 { 6331 | height: 50px; 6332 | } 6333 | .CLASS21914 { 6334 | background-color: #5D6373; 6335 | } 6336 | .CLASS21915 { 6337 | position: absolute; 6338 | } 6339 | .CLASS21916 { 6340 | margin-top: 5px; 6341 | text-align: right; 6342 | } 6343 | .CLASS21917 { 6344 | background-color: #5D6373; 6345 | border: 1px solid #000000; 6346 | color: white; 6347 | cursor: pointer; 6348 | padding: 0 20px; 6349 | text-align: center; 6350 | width: 30px; 6351 | } 6352 | .CLASS22000 { 6353 | margin: 4px; 6354 | width: 99%; 6355 | } 6356 | .CLASS22001 { 6357 | background-color: #F0F0F0; 6358 | text-align: center; 6359 | } 6360 | .CLASS22002 { 6361 | border-bottom: 2px solid white !important; 6362 | padding-bottom: 10px; 6363 | } 6364 | .CLASS22003 { 6365 | background-color: white; 6366 | } 6367 | .CLASS22004 { 6368 | background-color: #F0F0F0; 6369 | text-align: center; 6370 | } 6371 | .CLASS22005 { 6372 | height: 50px; 6373 | position: relative; 6374 | width: 50px; 6375 | } 6376 | .CLASS22006 { 6377 | text-align: right; 6378 | } 6379 | .CLASS22007 { 6380 | padding: 7px; 6381 | text-align: right; 6382 | } 6383 | .CLASS22008 { 6384 | text-align: center; 6385 | } 6386 | .CLASS22009 { 6387 | width: 99%; 6388 | } 6389 | .CLASS22010 { 6390 | height: 50px; 6391 | } 6392 | .CLASS22011 { 6393 | width: 100%; 6394 | } 6395 | .CLASS22012 { 6396 | width: 10%; 6397 | } 6398 | .CLASS22013 { 6399 | width: 80%; 6400 | } 6401 | .CLASS22014 { 6402 | width: 100px; 6403 | } 6404 | .CLASS22015 { 6405 | background-color: #9BA6BF; 6406 | } 6407 | .CLASS22100 { 6408 | font-size: smaller; 6409 | line-height: 14px; 6410 | } 6411 | .CLASS22101 { 6412 | padding: 4px; 6413 | } 6414 | .CLASS22102 { 6415 | background-color: infobackground; 6416 | border: 2px solid #F0F0F0; 6417 | height: 28px; 6418 | left: 300px; 6419 | padding: 6px; 6420 | position: absolute; 6421 | top: 0; 6422 | } 6423 | .CLASS22103 { 6424 | color: red; 6425 | font-size: large; 6426 | font-weight: bold; 6427 | } 6428 | .CLASS22104 { 6429 | background-color: white; 6430 | height: 50px; 6431 | left: 0; 6432 | margin: 0; 6433 | padding: 0; 6434 | position: relative; 6435 | top: 0; 6436 | width: 50px; 6437 | } 6438 | .CLASS22105 { 6439 | height: 50px; 6440 | position: relative; 6441 | width: 50px; 6442 | } 6443 | .CLASS22106 { 6444 | text-align: center; 6445 | } 6446 | .CLASS22107 { 6447 | width: 10%; 6448 | } 6449 | .CLASS22108 { 6450 | width: 80%; 6451 | } 6452 | .CLASS22109 { 6453 | vertical-align: middle; 6454 | } 6455 | .CLASS22200 { 6456 | width: 100%; 6457 | } 6458 | .CLASS22201 { 6459 | color: red; 6460 | font-weight: bold; 6461 | margin-top: 6px; 6462 | text-align: center; 6463 | } 6464 | .CLASS22202 { 6465 | border: 0 none; 6466 | margin: 0; 6467 | padding: 0; 6468 | } 6469 | .CLASS22203 { 6470 | border: 0 none; 6471 | width: 10%; 6472 | } 6473 | .CLASS22204 { 6474 | background-color: #5D6373; 6475 | border: 1px solid #000000; 6476 | color: white; 6477 | cursor: pointer; 6478 | margin: 2px; 6479 | padding: 2px; 6480 | text-align: center; 6481 | } 6482 | .CLASS22205 { 6483 | border: 0 none; 6484 | width: 90%; 6485 | } 6486 | .CLASS22206 { 6487 | color: red; 6488 | font-weight: bold; 6489 | height: 100%; 6490 | margin-top: 6px; 6491 | text-align: center; 6492 | } 6493 | .CLASS22207 { 6494 | border: 0 none; 6495 | width: 80%; 6496 | } 6497 | .CLASS22300 { 6498 | height: 100%; 6499 | overflow: hidden; 6500 | width: 100%; 6501 | } 6502 | .CLASS22301 { 6503 | text-align: center; 6504 | } 6505 | .CLASS22302 { 6506 | height: 50%; 6507 | } 6508 | .CLASS22303 { 6509 | padding-left: 8px; 6510 | padding-right: 8px; 6511 | padding-top: 16px; 6512 | text-align: center; 6513 | } 6514 | .CLASS22304 { 6515 | height: 100%; 6516 | width: 100%; 6517 | } 6518 | .CLASS22305 { 6519 | height: 98%; 6520 | } 6521 | .CLASS22306 { 6522 | color: #000000; 6523 | vertical-align: top; 6524 | } 6525 | .CLASS22307 { 6526 | background-color: #9BA6BF; 6527 | color: #000000; 6528 | overflow: auto; 6529 | padding-bottom: 20px; 6530 | visibility: hidden; 6531 | } 6532 | .CLASS22308 { 6533 | margin-top: 20px; 6534 | } 6535 | .CLASS22309 { 6536 | border: 1px solid #000000; 6537 | margin: 0; 6538 | } 6539 | .CLASS22310 { 6540 | background-color: #5D6373; 6541 | border: 1px solid #000000; 6542 | height: 30px; 6543 | text-align: center; 6544 | width: 580px; 6545 | } 6546 | .CLASS22311 { 6547 | background-color: #5D6373; 6548 | border: 1px solid #000000; 6549 | height: 5px; 6550 | width: 580px; 6551 | } 6552 | .CLASS22312 { 6553 | background-color: #F0F0F0; 6554 | border: 1px solid #000000; 6555 | color: #000000; 6556 | height: 120px; 6557 | width: 580px; 6558 | } 6559 | .CLASS22313 { 6560 | background-color: #5D6373; 6561 | border: 1px solid #000000; 6562 | height: 5px; 6563 | width: 580px; 6564 | } 6565 | #ic_ic_deviceparameters .SetProfLinkTbl { 6566 | border: 1px solid #000000; 6567 | color: white; 6568 | margin-bottom: 0; 6569 | margin-top: 0; 6570 | width: 99%; 6571 | } 6572 | #ic_deviceparameters .SetProfLinkTbl thead { 6573 | background-color: #5D6373; 6574 | text-align: center; 6575 | } 6576 | #ic_deviceparameters .SetProfLinkTbl tbody { 6577 | background-color: #9BA6BF; 6578 | color: #000000; 6579 | } 6580 | #ic_deviceparameters .SetProfLinkTbl .BlueHeader { 6581 | background-color: #3678C9; 6582 | } 6583 | #ic_deviceparameters .SetProfLinkTbl .WhiteHeader { 6584 | background-color: #F0F0F0; 6585 | } 6586 | #ic_deviceparameters .SetProfLinkTbl .WhiteHeader input { 6587 | width: 100%; 6588 | } 6589 | #ic_deviceparameters .SetProfLinkTbl td { 6590 | border: 1px solid #000000; 6591 | } 6592 | #ic_deviceparameters .SetProfLinkTbl .SetProfLinkTbl_Buttons { 6593 | border: 0 none; 6594 | color: white; 6595 | margin: 0; 6596 | padding: 0; 6597 | width: 100%; 6598 | } 6599 | #ic_deviceparameters .SetProfLinkTbl .SetProfLinkTbl_Buttons td { 6600 | border: 0 none; 6601 | } 6602 | #ic_deviceparameters .SetProfLinkTbl .ProfileTbl { 6603 | background-color: transparent; 6604 | border: 0 none; 6605 | color: #000000; 6606 | height: auto; 6607 | margin: 0; 6608 | text-align: left; 6609 | vertical-align: top; 6610 | width: auto; 6611 | } 6612 | #ic_deviceparameters .SetProfLinkTbl .ProfileTbl thead { 6613 | background-color: transparent; 6614 | height: auto; 6615 | text-align: left; 6616 | } 6617 | #ic_deviceparameters .SetProfLinkTbl .ProfileTbl thead tr { 6618 | height: auto; 6619 | } 6620 | #ic_deviceparameters .SetProfLinkTbl .ProfileTbl tbody { 6621 | background-color: transparent; 6622 | color: #000000; 6623 | } 6624 | #ic_deviceparameters .SetProfLinkTbl .ProfileTbl td { 6625 | border: 0 none; 6626 | } 6627 | #ic_deviceparameters .SetProfLinkTbl .easymode_wrapper { 6628 | } 6629 | #ic_deviceparameters #body_wrapper { 6630 | background-color: #182C6E; 6631 | margin-top: 10px; 6632 | } 6633 | #ic_deviceparameters #id_sender_group_receiver_profiles_wrapper { 6634 | background-color: #182C6E; 6635 | margin-top: 10px; 6636 | } 6637 | *[id^='side']{ 6638 | line-height: 20px; 6639 | margin-left: 30px; 6640 | text-align: left; 6641 | background-color: #faffc5; 6642 | width: 29.7cm; 6643 | word-wrap: break-word; 6644 | } -------------------------------------------------------------------------------- /www/exec.cgi: -------------------------------------------------------------------------------- 1 | #!/bin/tclsh 2 | 3 | source session.tcl 4 | 5 | proc toString { str } { 6 | set map { 7 | "\"" "\\\"" 8 | "\\" "\\\\" 9 | "\{" "\\\{" 10 | "\[" "\\\[" 11 | "/" "\\/" 12 | "\b" "\\b" 13 | "\f" "\\f" 14 | "\n" "\\n" 15 | "\r" "\\r" 16 | "\t" "\\t" 17 | "\ä" "\\ä" 18 | "\Ä" "\\Ä" 19 | "\ö" "\\ö" 20 | "\Ö" "\\Ö" 21 | "\ü" "\\ü" 22 | "\Ü" "\\Ü" 23 | } 24 | return "\"[string map $map $str]\"" 25 | } 26 | 27 | puts "Content-Type: text/plain; charset=iso-8859-1" 28 | puts "" 29 | 30 | if {[info exists sid] && [check_session $sid]} { 31 | if { [catch { 32 | set content [read stdin] 33 | array set script_result [rega_script $content] 34 | 35 | set first 1 36 | set result "\{\n" 37 | foreach name [array names script_result] { 38 | if { 1 != $first } { append result ",\n" } { set first 0 } 39 | set value $script_result($name) 40 | append result " [toString $name]: [toString $value]" 41 | } 42 | append result "\n\}" 43 | 44 | puts $result 45 | 46 | } errorMessage] } { 47 | puts $errorMessage 48 | } 49 | } else { 50 | puts "{error: no valid session}" 51 | } 52 | -------------------------------------------------------------------------------- /www/exec1.cgi: -------------------------------------------------------------------------------- 1 | #!/bin/tclsh 2 | 3 | source session.tcl 4 | 5 | proc toString { str } { 6 | set map { 7 | "\"" "\\\"" 8 | "\\" "\\\\" 9 | "\{" "\\\{" 10 | "\[" "\\\[" 11 | "/" "\\/" 12 | "\b" "\\b" 13 | "\f" "\\f" 14 | "\n" "\\n" 15 | "\r" "\\r" 16 | "\t" "\\t" 17 | "\ä" "\\ä" 18 | "\Ä" "\\Ä" 19 | "\ö" "\\ö" 20 | "\Ö" "\\Ö" 21 | "\ü" "\\ü" 22 | "\Ü" "\\Ü" 23 | "\ß" "\\ß" 24 | "\&" "\\&" 25 | "\"" "\\"" 26 | "\<" "\\<" 27 | "\>" "\\>" 28 | } 29 | return "\"[string map $map $str]\"" 30 | } 31 | 32 | puts "Content-Type: text/plain; charset=iso-8859-1" 33 | puts "" 34 | 35 | if {[info exists sid] && [check_session $sid]} { 36 | if { [catch { 37 | set content [read stdin] 38 | array set script_result [rega_script $content] 39 | 40 | set first 1 41 | set result "\{\n" 42 | foreach name [array names script_result] { 43 | if { 1 != $first } { append result ",\n"} { set first 0 } 44 | set value $script_result($name) 45 | append result " [toString $name]: [toString $value]" 46 | } 47 | append result "\n\}" 48 | 49 | puts $result 50 | 51 | } errorMessage] } { 52 | puts $errorMessage 53 | } 54 | } else { 55 | puts "{error: no valid session}" 56 | } 57 | -------------------------------------------------------------------------------- /www/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homematic-community/hm-print/a94dc0b4f26f9d23b14e5c06b30dfbca337f63da/www/functions.js -------------------------------------------------------------------------------- /www/printprograms.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /www/session.tcl: -------------------------------------------------------------------------------- 1 | #!/bin/tclsh 2 | 3 | load tclrega.so 4 | 5 | catch { 6 | set input $env(QUERY_STRING) 7 | set pairs [split $input &] 8 | set sid "" 9 | foreach pair $pairs { 10 | if {0 != [regexp "^sid=(@.*@)$" $pair dummy val]} { 11 | set sid $val 12 | break 13 | } 14 | } 15 | } 16 | 17 | proc check_session sid { 18 | if {[regexp {@([0-9a-zA-Z]{10})@} $sid all sidnr]} { 19 | set res [lindex [rega_script "Write(system.GetSessionVarStr('$sidnr'));"] 1] 20 | if {$res != ""} { 21 | return 1 22 | } 23 | } 24 | return 0 25 | } 26 | -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Verdana ! important; 3 | font-size: 12px; 4 | } 5 | 6 | #page { 7 | width: 96%; 8 | margin-left: auto ! important; 9 | margin-right: auto ! important; 10 | border: 1px solid black; 11 | } 12 | 13 | h1 { 14 | height: 20px; 15 | background-image: url(bg.png); 16 | background-repeat: repeat-x; 17 | line-height: 20px; 18 | padding-left: 10px; 19 | margin: 0 0 5px 0; 20 | font-weight: bold; 21 | text-align: center; 22 | } 23 | 24 | .left { 25 | float: left; 26 | margin-right: 10px; 27 | } 28 | 29 | .right { 30 | float: right; 31 | margin-left: 10px; 32 | } 33 | 34 | .clear { 35 | clear: both; 36 | } 37 | 38 | .caption { 39 | margin: 5px; 40 | } 41 | 42 | .content { 43 | margin-left: 5%; 44 | margin-right: 5%; 45 | } 46 | 47 | textarea { 48 | font-family: Monospace ! important; 49 | width:100%; 50 | height:310px; 51 | overflow: scroll; 52 | } 53 | 54 | a:link, a:focus, a:visited, a:active, a:hover { 55 | text-decoration: none; 56 | width: 150px; 57 | border: 1px solid black; 58 | background-color: #a0a0a0; 59 | color: white; 60 | height: 20px; 61 | line-height:20px; 62 | text-align: center; 63 | background-image: url(bg.png); 64 | font-weight: bold; 65 | margin-top: 2px; 66 | margin-bottom: 2px; 67 | } 68 | 69 | a:hover { 70 | background-color: #c0c0c0; 71 | } -------------------------------------------------------------------------------- /www/update-check.cgi: -------------------------------------------------------------------------------- 1 | #!/bin/tclsh 2 | 3 | set checkURL "https://raw.githubusercontent.com/homematic-community/hm-print/master/VERSION" 4 | set downloadURL "https://github.com/homematic-community/hm-print/releases" 5 | 6 | catch { 7 | set input $env(QUERY_STRING) 8 | set pairs [split $input &] 9 | foreach pair $pairs { 10 | if {$pair == "cmd=download"} { 11 | set cmd "download" 12 | break 13 | } 14 | } 15 | } 16 | 17 | if { [info exists cmd ] && $cmd == "download"} { 18 | puts -nonewline "Content-Type: text/html; charset=utf-8\r\n\r\n" 19 | puts -nonewline "" 20 | } else { 21 | puts -nonewline "Content-Type: text/plain; charset=utf-8\r\n\r\n" 22 | catch { 23 | set newversion [ exec /usr/bin/wget -qO- --no-check-certificate $checkURL ] 24 | } 25 | if { [info exists newversion] } { 26 | puts $newversion 27 | } else { 28 | puts "n/a" 29 | } 30 | } 31 | --------------------------------------------------------------------------------