styles.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. touch-action:none;
  5. position:static;
  6. left:auto;
  7. width:792px;
  8. margin-left:0;
  9. margin-right:0;
  10. text-align:left;
  11. }
  12. #base {
  13. position:absolute;
  14. z-index:0;
  15. }
  16. #u0 {
  17. position:absolute;
  18. left:30px;
  19. top:620px;
  20. width:747px;
  21. height:200px;
  22. }
  23. #u0_img {
  24. position:absolute;
  25. left:0px;
  26. top:0px;
  27. width:747px;
  28. height:200px;
  29. }
  30. #u1 {
  31. position:absolute;
  32. left:2px;
  33. top:92px;
  34. width:743px;
  35. visibility:hidden;
  36. word-wrap:break-word;
  37. }
  38. #u2 {
  39. position:absolute;
  40. left:0px;
  41. top:0px;
  42. width:800px;
  43. height:880px;
  44. }
  45. #u2_img {
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:800px;
  50. height:880px;
  51. }
  52. #u3 {
  53. position:absolute;
  54. left:2px;
  55. top:432px;
  56. width:796px;
  57. visibility:hidden;
  58. word-wrap:break-word;
  59. }
  60. #u4 {
  61. position:absolute;
  62. left:23px;
  63. top:290px;
  64. width:134px;
  65. height:30px;
  66. text-align:right;
  67. }
  68. #u4_img {
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:134px;
  73. height:30px;
  74. }
  75. #u5 {
  76. position:absolute;
  77. left:0px;
  78. top:7px;
  79. width:134px;
  80. word-wrap:break-word;
  81. }
  82. #u6 {
  83. position:absolute;
  84. left:157px;
  85. top:292px;
  86. width:100px;
  87. height:25px;
  88. }
  89. #u6_input {
  90. position:absolute;
  91. left:0px;
  92. top:0px;
  93. width:100px;
  94. height:25px;
  95. font-family:'Arial Normal', 'Arial';
  96. font-weight:400;
  97. font-style:normal;
  98. font-size:13px;
  99. text-decoration:none;
  100. color:#000000;
  101. text-align:center;
  102. }
  103. #u7 {
  104. position:absolute;
  105. left:23px;
  106. top:329px;
  107. width:759px;
  108. height:137px;
  109. }
  110. #u8 {
  111. position:absolute;
  112. left:0px;
  113. top:0px;
  114. width:60px;
  115. height:33px;
  116. font-family:'Arial Negreta', 'Arial';
  117. font-weight:700;
  118. font-style:normal;
  119. font-size:16px;
  120. text-align:center;
  121. }
  122. #u8_img {
  123. position:absolute;
  124. left:0px;
  125. top:0px;
  126. width:60px;
  127. height:33px;
  128. }
  129. #u9 {
  130. position:absolute;
  131. left:2px;
  132. top:7px;
  133. width:56px;
  134. word-wrap:break-word;
  135. }
  136. #u10 {
  137. position:absolute;
  138. left:60px;
  139. top:0px;
  140. width:103px;
  141. height:33px;
  142. font-family:'Arial Negreta', 'Arial';
  143. font-weight:700;
  144. font-style:normal;
  145. font-size:16px;
  146. text-align:center;
  147. }
  148. #u10_img {
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:103px;
  153. height:33px;
  154. }
  155. #u11 {
  156. position:absolute;
  157. left:2px;
  158. top:7px;
  159. width:99px;
  160. word-wrap:break-word;
  161. }
  162. #u12 {
  163. position:absolute;
  164. left:163px;
  165. top:0px;
  166. width:246px;
  167. height:33px;
  168. font-family:'Arial Negreta', 'Arial';
  169. font-weight:700;
  170. font-style:normal;
  171. font-size:16px;
  172. text-align:center;
  173. }
  174. #u12_img {
  175. position:absolute;
  176. left:0px;
  177. top:0px;
  178. width:246px;
  179. height:33px;
  180. }
  181. #u13 {
  182. position:absolute;
  183. left:2px;
  184. top:7px;
  185. width:242px;
  186. word-wrap:break-word;
  187. }
  188. #u14 {
  189. position:absolute;
  190. left:409px;
  191. top:0px;
  192. width:171px;
  193. height:33px;
  194. font-family:'Arial Negreta', 'Arial';
  195. font-weight:700;
  196. font-style:normal;
  197. font-size:16px;
  198. text-align:center;
  199. }
  200. #u14_img {
  201. position:absolute;
  202. left:0px;
  203. top:0px;
  204. width:171px;
  205. height:33px;
  206. }
  207. #u15 {
  208. position:absolute;
  209. left:2px;
  210. top:7px;
  211. width:167px;
  212. word-wrap:break-word;
  213. }
  214. #u16 {
  215. position:absolute;
  216. left:580px;
  217. top:0px;
  218. width:174px;
  219. height:33px;
  220. font-family:'Arial Negreta', 'Arial';
  221. font-weight:700;
  222. font-style:normal;
  223. font-size:16px;
  224. text-align:center;
  225. }
  226. #u16_img {
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:174px;
  231. height:33px;
  232. }
  233. #u17 {
  234. position:absolute;
  235. left:2px;
  236. top:7px;
  237. width:170px;
  238. word-wrap:break-word;
  239. }
  240. #u18 {
  241. position:absolute;
  242. left:0px;
  243. top:33px;
  244. width:60px;
  245. height:33px;
  246. text-align:center;
  247. }
  248. #u18_img {
  249. position:absolute;
  250. left:0px;
  251. top:0px;
  252. width:60px;
  253. height:33px;
  254. }
  255. #u19 {
  256. position:absolute;
  257. left:2px;
  258. top:8px;
  259. width:56px;
  260. word-wrap:break-word;
  261. }
  262. #u20 {
  263. position:absolute;
  264. left:60px;
  265. top:33px;
  266. width:103px;
  267. height:33px;
  268. text-align:center;
  269. }
  270. #u20_img {
  271. position:absolute;
  272. left:0px;
  273. top:0px;
  274. width:103px;
  275. height:33px;
  276. }
  277. #u21 {
  278. position:absolute;
  279. left:2px;
  280. top:8px;
  281. width:99px;
  282. word-wrap:break-word;
  283. }
  284. #u22 {
  285. position:absolute;
  286. left:163px;
  287. top:33px;
  288. width:246px;
  289. height:33px;
  290. text-align:center;
  291. }
  292. #u22_img {
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:246px;
  297. height:33px;
  298. }
  299. #u23 {
  300. position:absolute;
  301. left:2px;
  302. top:8px;
  303. width:242px;
  304. word-wrap:break-word;
  305. }
  306. #u24 {
  307. position:absolute;
  308. left:409px;
  309. top:33px;
  310. width:171px;
  311. height:33px;
  312. text-align:center;
  313. }
  314. #u24_img {
  315. position:absolute;
  316. left:0px;
  317. top:0px;
  318. width:171px;
  319. height:33px;
  320. }
  321. #u25 {
  322. position:absolute;
  323. left:2px;
  324. top:8px;
  325. width:167px;
  326. word-wrap:break-word;
  327. }
  328. #u26 {
  329. position:absolute;
  330. left:580px;
  331. top:33px;
  332. width:174px;
  333. height:33px;
  334. text-align:center;
  335. }
  336. #u26_img {
  337. position:absolute;
  338. left:0px;
  339. top:0px;
  340. width:174px;
  341. height:33px;
  342. }
  343. #u27 {
  344. position:absolute;
  345. left:2px;
  346. top:8px;
  347. width:170px;
  348. visibility:hidden;
  349. word-wrap:break-word;
  350. }
  351. #u28 {
  352. position:absolute;
  353. left:0px;
  354. top:66px;
  355. width:60px;
  356. height:33px;
  357. text-align:center;
  358. }
  359. #u28_img {
  360. position:absolute;
  361. left:0px;
  362. top:0px;
  363. width:60px;
  364. height:33px;
  365. }
  366. #u29 {
  367. position:absolute;
  368. left:2px;
  369. top:8px;
  370. width:56px;
  371. visibility:hidden;
  372. word-wrap:break-word;
  373. }
  374. #u30 {
  375. position:absolute;
  376. left:60px;
  377. top:66px;
  378. width:103px;
  379. height:33px;
  380. text-align:center;
  381. }
  382. #u30_img {
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:103px;
  387. height:33px;
  388. }
  389. #u31 {
  390. position:absolute;
  391. left:2px;
  392. top:8px;
  393. width:99px;
  394. visibility:hidden;
  395. word-wrap:break-word;
  396. }
  397. #u32 {
  398. position:absolute;
  399. left:163px;
  400. top:66px;
  401. width:246px;
  402. height:33px;
  403. text-align:center;
  404. }
  405. #u32_img {
  406. position:absolute;
  407. left:0px;
  408. top:0px;
  409. width:246px;
  410. height:33px;
  411. }
  412. #u33 {
  413. position:absolute;
  414. left:2px;
  415. top:8px;
  416. width:242px;
  417. visibility:hidden;
  418. word-wrap:break-word;
  419. }
  420. #u34 {
  421. position:absolute;
  422. left:409px;
  423. top:66px;
  424. width:171px;
  425. height:33px;
  426. text-align:center;
  427. }
  428. #u34_img {
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:171px;
  433. height:33px;
  434. }
  435. #u35 {
  436. position:absolute;
  437. left:2px;
  438. top:8px;
  439. width:167px;
  440. visibility:hidden;
  441. word-wrap:break-word;
  442. }
  443. #u36 {
  444. position:absolute;
  445. left:580px;
  446. top:66px;
  447. width:174px;
  448. height:33px;
  449. text-align:center;
  450. }
  451. #u36_img {
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:174px;
  456. height:33px;
  457. }
  458. #u37 {
  459. position:absolute;
  460. left:2px;
  461. top:8px;
  462. width:170px;
  463. visibility:hidden;
  464. word-wrap:break-word;
  465. }
  466. #u38 {
  467. position:absolute;
  468. left:0px;
  469. top:99px;
  470. width:60px;
  471. height:33px;
  472. text-align:center;
  473. }
  474. #u38_img {
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:60px;
  479. height:33px;
  480. }
  481. #u39 {
  482. position:absolute;
  483. left:2px;
  484. top:8px;
  485. width:56px;
  486. visibility:hidden;
  487. word-wrap:break-word;
  488. }
  489. #u40 {
  490. position:absolute;
  491. left:60px;
  492. top:99px;
  493. width:103px;
  494. height:33px;
  495. text-align:center;
  496. }
  497. #u40_img {
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:103px;
  502. height:33px;
  503. }
  504. #u41 {
  505. position:absolute;
  506. left:2px;
  507. top:8px;
  508. width:99px;
  509. visibility:hidden;
  510. word-wrap:break-word;
  511. }
  512. #u42 {
  513. position:absolute;
  514. left:163px;
  515. top:99px;
  516. width:246px;
  517. height:33px;
  518. text-align:center;
  519. }
  520. #u42_img {
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:246px;
  525. height:33px;
  526. }
  527. #u43 {
  528. position:absolute;
  529. left:2px;
  530. top:8px;
  531. width:242px;
  532. visibility:hidden;
  533. word-wrap:break-word;
  534. }
  535. #u44 {
  536. position:absolute;
  537. left:409px;
  538. top:99px;
  539. width:171px;
  540. height:33px;
  541. text-align:center;
  542. }
  543. #u44_img {
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:171px;
  548. height:33px;
  549. }
  550. #u45 {
  551. position:absolute;
  552. left:2px;
  553. top:8px;
  554. width:167px;
  555. visibility:hidden;
  556. word-wrap:break-word;
  557. }
  558. #u46 {
  559. position:absolute;
  560. left:580px;
  561. top:99px;
  562. width:174px;
  563. height:33px;
  564. text-align:center;
  565. }
  566. #u46_img {
  567. position:absolute;
  568. left:0px;
  569. top:0px;
  570. width:174px;
  571. height:33px;
  572. }
  573. #u47 {
  574. position:absolute;
  575. left:2px;
  576. top:8px;
  577. width:170px;
  578. visibility:hidden;
  579. word-wrap:break-word;
  580. }
  581. #u48 {
  582. position:absolute;
  583. left:666px;
  584. top:366px;
  585. width:55px;
  586. height:25px;
  587. }
  588. #u48_input {
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:55px;
  593. height:25px;
  594. font-family:'Arial Normal', 'Arial';
  595. font-weight:400;
  596. font-style:normal;
  597. font-size:13px;
  598. text-decoration:none;
  599. color:#000000;
  600. text-align:center;
  601. }
  602. #u49 {
  603. position:absolute;
  604. left:111px;
  605. top:240px;
  606. width:592px;
  607. height:40px;
  608. }
  609. #u49_input {
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:592px;
  614. height:40px;
  615. font-family:'Arial Normal', 'Arial';
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:13px;
  619. text-decoration:none;
  620. color:#000000;
  621. text-align:left;
  622. }
  623. #u50 {
  624. position:absolute;
  625. left:17px;
  626. top:240px;
  627. width:94px;
  628. height:30px;
  629. text-align:right;
  630. }
  631. #u50_img {
  632. position:absolute;
  633. left:0px;
  634. top:0px;
  635. width:94px;
  636. height:30px;
  637. }
  638. #u51 {
  639. position:absolute;
  640. left:0px;
  641. top:7px;
  642. width:94px;
  643. word-wrap:break-word;
  644. }
  645. #u52 {
  646. position:absolute;
  647. left:9px;
  648. top:115px;
  649. width:94px;
  650. height:30px;
  651. text-align:right;
  652. }
  653. #u52_img {
  654. position:absolute;
  655. left:0px;
  656. top:0px;
  657. width:94px;
  658. height:30px;
  659. }
  660. #u53 {
  661. position:absolute;
  662. left:0px;
  663. top:7px;
  664. width:94px;
  665. word-wrap:break-word;
  666. }
  667. #u54 {
  668. position:absolute;
  669. left:103px;
  670. top:115px;
  671. width:150px;
  672. height:30px;
  673. }
  674. #u54_input {
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:150px;
  679. height:30px;
  680. font-family:'Arial Normal', 'Arial';
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:13px;
  684. text-decoration:none;
  685. color:#000000;
  686. text-align:left;
  687. }
  688. #u55 {
  689. position:absolute;
  690. left:501px;
  691. top:60px;
  692. width:94px;
  693. height:30px;
  694. text-align:right;
  695. }
  696. #u55_img {
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:94px;
  701. height:30px;
  702. }
  703. #u56 {
  704. position:absolute;
  705. left:0px;
  706. top:7px;
  707. width:94px;
  708. word-wrap:break-word;
  709. }
  710. #u57 {
  711. position:absolute;
  712. left:595px;
  713. top:60px;
  714. width:150px;
  715. height:30px;
  716. }
  717. #u57_input {
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:150px;
  722. height:30px;
  723. font-family:'Arial Normal', 'Arial';
  724. font-weight:400;
  725. font-style:normal;
  726. font-size:13px;
  727. text-decoration:none;
  728. color:#000000;
  729. text-align:left;
  730. }
  731. #u58 {
  732. position:absolute;
  733. left:50px;
  734. top:525px;
  735. width:94px;
  736. height:30px;
  737. text-align:right;
  738. }
  739. #u58_img {
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:94px;
  744. height:30px;
  745. }
  746. #u59 {
  747. position:absolute;
  748. left:0px;
  749. top:7px;
  750. width:94px;
  751. word-wrap:break-word;
  752. }
  753. #u60 {
  754. position:absolute;
  755. left:470px;
  756. top:800px;
  757. width:100px;
  758. height:35px;
  759. }
  760. #u60_input {
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:100px;
  765. height:35px;
  766. font-family:'Arial Normal', 'Arial';
  767. font-weight:400;
  768. font-style:normal;
  769. font-size:13px;
  770. text-decoration:none;
  771. color:#000000;
  772. text-align:center;
  773. }
  774. #u61 {
  775. position:absolute;
  776. left:103px;
  777. top:10px;
  778. width:150px;
  779. height:30px;
  780. }
  781. #u61_input {
  782. position:absolute;
  783. left:0px;
  784. top:0px;
  785. width:150px;
  786. height:30px;
  787. font-family:'Arial Normal', 'Arial';
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:13px;
  791. text-decoration:none;
  792. color:#000000;
  793. text-align:left;
  794. }
  795. #u62 {
  796. position:absolute;
  797. left:36px;
  798. top:10px;
  799. width:67px;
  800. height:30px;
  801. text-align:right;
  802. }
  803. #u62_img {
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:67px;
  808. height:30px;
  809. }
  810. #u63 {
  811. position:absolute;
  812. left:0px;
  813. top:7px;
  814. width:67px;
  815. word-wrap:break-word;
  816. }
  817. #u64 {
  818. position:absolute;
  819. left:500px;
  820. top:10px;
  821. width:94px;
  822. height:30px;
  823. text-align:right;
  824. }
  825. #u64_img {
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:94px;
  830. height:30px;
  831. }
  832. #u65 {
  833. position:absolute;
  834. left:0px;
  835. top:7px;
  836. width:94px;
  837. word-wrap:break-word;
  838. }
  839. #u66 {
  840. position:absolute;
  841. left:262px;
  842. top:10px;
  843. width:67px;
  844. height:30px;
  845. text-align:right;
  846. }
  847. #u66_img {
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:67px;
  852. height:30px;
  853. }
  854. #u67 {
  855. position:absolute;
  856. left:0px;
  857. top:7px;
  858. width:67px;
  859. word-wrap:break-word;
  860. }
  861. #u68 {
  862. position:absolute;
  863. left:329px;
  864. top:10px;
  865. width:150px;
  866. height:30px;
  867. }
  868. #u68_input {
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:150px;
  873. height:30px;
  874. font-family:'Arial Normal', 'Arial';
  875. font-weight:400;
  876. font-style:normal;
  877. font-size:13px;
  878. text-decoration:none;
  879. color:#000000;
  880. text-align:left;
  881. }
  882. #u69 {
  883. position:absolute;
  884. left:10px;
  885. top:60px;
  886. width:94px;
  887. height:30px;
  888. text-align:right;
  889. }
  890. #u69_img {
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:94px;
  895. height:30px;
  896. }
  897. #u70 {
  898. position:absolute;
  899. left:0px;
  900. top:7px;
  901. width:94px;
  902. word-wrap:break-word;
  903. }
  904. #u71 {
  905. position:absolute;
  906. left:236px;
  907. top:60px;
  908. width:94px;
  909. height:30px;
  910. text-align:right;
  911. }
  912. #u71_img {
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:94px;
  917. height:30px;
  918. }
  919. #u72 {
  920. position:absolute;
  921. left:0px;
  922. top:7px;
  923. width:94px;
  924. word-wrap:break-word;
  925. }
  926. #u73 {
  927. position:absolute;
  928. left:330px;
  929. top:60px;
  930. width:150px;
  931. height:30px;
  932. }
  933. #u73_input {
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:150px;
  938. height:30px;
  939. font-family:'Arial Normal', 'Arial';
  940. font-weight:400;
  941. font-style:normal;
  942. font-size:13px;
  943. text-decoration:none;
  944. color:#000000;
  945. text-align:left;
  946. }
  947. #u74 {
  948. position:absolute;
  949. left:103px;
  950. top:60px;
  951. width:150px;
  952. height:30px;
  953. }
  954. #u74_input {
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:150px;
  959. height:30px;
  960. font-family:'Arial Normal', 'Arial';
  961. font-weight:400;
  962. font-style:normal;
  963. font-size:13px;
  964. text-decoration:none;
  965. color:#000000;
  966. }
  967. #u74_input:disabled {
  968. color:grayText;
  969. }
  970. #u75 {
  971. position:absolute;
  972. left:-2px;
  973. top:170px;
  974. width:105px;
  975. height:30px;
  976. text-align:right;
  977. }
  978. #u75_img {
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:105px;
  983. height:30px;
  984. }
  985. #u76 {
  986. position:absolute;
  987. left:0px;
  988. top:7px;
  989. width:105px;
  990. word-wrap:break-word;
  991. }
  992. #u77 {
  993. position:absolute;
  994. left:103px;
  995. top:170px;
  996. width:150px;
  997. height:30px;
  998. }
  999. #u77_input {
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:150px;
  1004. height:30px;
  1005. font-family:'Arial Normal', 'Arial';
  1006. font-weight:400;
  1007. font-style:normal;
  1008. font-size:13px;
  1009. text-decoration:none;
  1010. color:#000000;
  1011. }
  1012. #u77_input:disabled {
  1013. color:grayText;
  1014. }
  1015. #u78 {
  1016. position:absolute;
  1017. left:263px;
  1018. top:170px;
  1019. width:94px;
  1020. height:30px;
  1021. text-align:right;
  1022. }
  1023. #u78_img {
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:94px;
  1028. height:30px;
  1029. }
  1030. #u79 {
  1031. position:absolute;
  1032. left:0px;
  1033. top:7px;
  1034. width:94px;
  1035. word-wrap:break-word;
  1036. }
  1037. #u80 {
  1038. position:absolute;
  1039. left:367px;
  1040. top:170px;
  1041. width:150px;
  1042. height:30px;
  1043. }
  1044. #u80_input {
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:150px;
  1049. height:30px;
  1050. font-family:'Arial Normal', 'Arial';
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:13px;
  1054. text-decoration:none;
  1055. color:#000000;
  1056. text-align:left;
  1057. }
  1058. #u81 {
  1059. position:absolute;
  1060. left:540px;
  1061. top:170px;
  1062. width:94px;
  1063. height:30px;
  1064. text-align:right;
  1065. }
  1066. #u81_img {
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:94px;
  1071. height:30px;
  1072. }
  1073. #u82 {
  1074. position:absolute;
  1075. left:0px;
  1076. top:7px;
  1077. width:94px;
  1078. word-wrap:break-word;
  1079. }
  1080. #u83 {
  1081. position:absolute;
  1082. left:644px;
  1083. top:170px;
  1084. width:150px;
  1085. height:30px;
  1086. }
  1087. #u83_input {
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:150px;
  1092. height:30px;
  1093. font-family:'Arial Normal', 'Arial';
  1094. font-weight:400;
  1095. font-style:normal;
  1096. font-size:13px;
  1097. text-decoration:none;
  1098. color:#000000;
  1099. text-align:left;
  1100. }
  1101. #u84 {
  1102. position:absolute;
  1103. left:144px;
  1104. top:490px;
  1105. width:200px;
  1106. height:100px;
  1107. }
  1108. #u84_input {
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:200px;
  1113. height:100px;
  1114. font-family:'Arial Normal', 'Arial';
  1115. font-weight:400;
  1116. font-style:normal;
  1117. font-size:13px;
  1118. text-decoration:none;
  1119. color:#000000;
  1120. }
  1121. #u85 {
  1122. position:absolute;
  1123. left:344px;
  1124. top:560px;
  1125. width:64px;
  1126. height:30px;
  1127. }
  1128. #u85_input {
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:64px;
  1133. height:30px;
  1134. font-family:'Arial Normal', 'Arial';
  1135. font-weight:400;
  1136. font-style:normal;
  1137. font-size:13px;
  1138. text-decoration:none;
  1139. color:#000000;
  1140. text-align:center;
  1141. }
  1142. #u86 {
  1143. position:absolute;
  1144. left:490px;
  1145. top:175px;
  1146. width:22px;
  1147. height:19px;
  1148. }
  1149. #u86_img {
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:22px;
  1154. height:19px;
  1155. }
  1156. #u87 {
  1157. position:absolute;
  1158. left:2px;
  1159. top:2px;
  1160. width:18px;
  1161. visibility:hidden;
  1162. word-wrap:break-word;
  1163. }
  1164. #u88 {
  1165. position:absolute;
  1166. left:398px;
  1167. top:195px;
  1168. width:208px;
  1169. height:219px;
  1170. overflow:hidden;
  1171. visibility:hidden;
  1172. }
  1173. #u88_state0 {
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:208px;
  1178. height:219px;
  1179. -ms-overflow-x:hidden;
  1180. overflow-x:hidden;
  1181. -ms-overflow-y:hidden;
  1182. overflow-y:hidden;
  1183. background-image:none;
  1184. }
  1185. #u88_state0_content {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:1px;
  1190. height:1px;
  1191. }
  1192. #u89 {
  1193. position:absolute;
  1194. left:1px;
  1195. top:1px;
  1196. width:206px;
  1197. height:217px;
  1198. }
  1199. #u89_img {
  1200. position:absolute;
  1201. left:0px;
  1202. top:0px;
  1203. width:206px;
  1204. height:217px;
  1205. }
  1206. #u90 {
  1207. position:absolute;
  1208. left:2px;
  1209. top:100px;
  1210. width:202px;
  1211. visibility:hidden;
  1212. word-wrap:break-word;
  1213. }
  1214. #u91 {
  1215. position:absolute;
  1216. left:4px;
  1217. top:9px;
  1218. width:200px;
  1219. height:203px;
  1220. }
  1221. #u91_img {
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:200px;
  1226. height:203px;
  1227. }
  1228. #u92 {
  1229. position:absolute;
  1230. left:2px;
  1231. top:94px;
  1232. width:196px;
  1233. visibility:hidden;
  1234. word-wrap:break-word;
  1235. }
  1236. #u93 {
  1237. position:absolute;
  1238. left:91px;
  1239. top:122px;
  1240. width:25px;
  1241. height:19px;
  1242. overflow:hidden;
  1243. background-image:url('../../resources/images/transparent.gif');
  1244. }
  1245. #u94 {
  1246. position:absolute;
  1247. left:9px;
  1248. top:191px;
  1249. width:50px;
  1250. height:18px;
  1251. overflow:hidden;
  1252. background-image:url('../../resources/images/transparent.gif');
  1253. }
  1254. #u95 {
  1255. position:absolute;
  1256. left:147px;
  1257. top:191px;
  1258. width:50px;
  1259. height:18px;
  1260. overflow:hidden;
  1261. background-image:url('../../resources/images/transparent.gif');
  1262. }
  1263. #u96 {
  1264. position:absolute;
  1265. left:69px;
  1266. top:191px;
  1267. width:69px;
  1268. height:18px;
  1269. overflow:hidden;
  1270. background-image:url('../../resources/images/transparent.gif');
  1271. }
  1272. #u97 {
  1273. position:absolute;
  1274. left:766px;
  1275. top:175px;
  1276. width:22px;
  1277. height:19px;
  1278. }
  1279. #u97_img {
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:22px;
  1284. height:19px;
  1285. }
  1286. #u98 {
  1287. position:absolute;
  1288. left:2px;
  1289. top:2px;
  1290. width:18px;
  1291. visibility:hidden;
  1292. word-wrap:break-word;
  1293. }
  1294. #u99 {
  1295. position:absolute;
  1296. left:674px;
  1297. top:195px;
  1298. width:208px;
  1299. height:219px;
  1300. overflow:hidden;
  1301. visibility:hidden;
  1302. }
  1303. #u99_state0 {
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:208px;
  1308. height:219px;
  1309. -ms-overflow-x:hidden;
  1310. overflow-x:hidden;
  1311. -ms-overflow-y:hidden;
  1312. overflow-y:hidden;
  1313. background-image:none;
  1314. }
  1315. #u99_state0_content {
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:1px;
  1320. height:1px;
  1321. }
  1322. #u100 {
  1323. position:absolute;
  1324. left:1px;
  1325. top:1px;
  1326. width:206px;
  1327. height:217px;
  1328. }
  1329. #u100_img {
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:206px;
  1334. height:217px;
  1335. }
  1336. #u101 {
  1337. position:absolute;
  1338. left:2px;
  1339. top:100px;
  1340. width:202px;
  1341. visibility:hidden;
  1342. word-wrap:break-word;
  1343. }
  1344. #u102 {
  1345. position:absolute;
  1346. left:4px;
  1347. top:9px;
  1348. width:200px;
  1349. height:203px;
  1350. }
  1351. #u102_img {
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:200px;
  1356. height:203px;
  1357. }
  1358. #u103 {
  1359. position:absolute;
  1360. left:2px;
  1361. top:94px;
  1362. width:196px;
  1363. visibility:hidden;
  1364. word-wrap:break-word;
  1365. }
  1366. #u104 {
  1367. position:absolute;
  1368. left:91px;
  1369. top:122px;
  1370. width:25px;
  1371. height:19px;
  1372. overflow:hidden;
  1373. background-image:url('../../resources/images/transparent.gif');
  1374. }
  1375. #u105 {
  1376. position:absolute;
  1377. left:9px;
  1378. top:191px;
  1379. width:50px;
  1380. height:18px;
  1381. overflow:hidden;
  1382. background-image:url('../../resources/images/transparent.gif');
  1383. }
  1384. #u106 {
  1385. position:absolute;
  1386. left:147px;
  1387. top:191px;
  1388. width:50px;
  1389. height:18px;
  1390. overflow:hidden;
  1391. background-image:url('../../resources/images/transparent.gif');
  1392. }
  1393. #u107 {
  1394. position:absolute;
  1395. left:69px;
  1396. top:191px;
  1397. width:69px;
  1398. height:18px;
  1399. overflow:hidden;
  1400. background-image:url('../../resources/images/transparent.gif');
  1401. }
  1402. #u108 {
  1403. position:absolute;
  1404. left:262px;
  1405. top:800px;
  1406. width:100px;
  1407. height:35px;
  1408. }
  1409. #u108_input {
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:100px;
  1414. height:35px;
  1415. font-family:'Arial Normal', 'Arial';
  1416. font-weight:400;
  1417. font-style:normal;
  1418. font-size:13px;
  1419. text-decoration:none;
  1420. color:#000000;
  1421. text-align:center;
  1422. }
  1423. #u109 {
  1424. position:absolute;
  1425. left:40px;
  1426. top:626px;
  1427. width:94px;
  1428. height:30px;
  1429. text-align:right;
  1430. }
  1431. #u109_img {
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:94px;
  1436. height:30px;
  1437. }
  1438. #u110 {
  1439. position:absolute;
  1440. left:0px;
  1441. top:7px;
  1442. width:94px;
  1443. word-wrap:break-word;
  1444. }
  1445. #u111 {
  1446. position:absolute;
  1447. left:144px;
  1448. top:626px;
  1449. width:150px;
  1450. height:30px;
  1451. }
  1452. #u111_input {
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:150px;
  1457. height:30px;
  1458. font-family:'Arial Normal', 'Arial';
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:13px;
  1462. text-decoration:none;
  1463. color:#000000;
  1464. text-align:left;
  1465. }
  1466. #u112 {
  1467. position:absolute;
  1468. left:320px;
  1469. top:626px;
  1470. width:94px;
  1471. height:30px;
  1472. text-align:right;
  1473. }
  1474. #u112_img {
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:94px;
  1479. height:30px;
  1480. }
  1481. #u113 {
  1482. position:absolute;
  1483. left:0px;
  1484. top:7px;
  1485. width:94px;
  1486. word-wrap:break-word;
  1487. }
  1488. #u114 {
  1489. position:absolute;
  1490. left:424px;
  1491. top:626px;
  1492. width:150px;
  1493. height:30px;
  1494. }
  1495. #u114_input {
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:150px;
  1500. height:30px;
  1501. font-family:'Arial Normal', 'Arial';
  1502. font-weight:400;
  1503. font-style:normal;
  1504. font-size:13px;
  1505. text-decoration:none;
  1506. color:#000000;
  1507. text-align:left;
  1508. }
  1509. #u115 {
  1510. position:absolute;
  1511. left:134px;
  1512. top:720px;
  1513. width:592px;
  1514. height:40px;
  1515. }
  1516. #u115_input {
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:592px;
  1521. height:40px;
  1522. font-family:'Arial Normal', 'Arial';
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:13px;
  1526. text-decoration:none;
  1527. color:#000000;
  1528. text-align:left;
  1529. }
  1530. #u116 {
  1531. position:absolute;
  1532. left:40px;
  1533. top:720px;
  1534. width:94px;
  1535. height:30px;
  1536. text-align:right;
  1537. }
  1538. #u116_img {
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:94px;
  1543. height:30px;
  1544. }
  1545. #u117 {
  1546. position:absolute;
  1547. left:0px;
  1548. top:7px;
  1549. width:94px;
  1550. word-wrap:break-word;
  1551. }
  1552. #u118 {
  1553. position:absolute;
  1554. left:267px;
  1555. top:631px;
  1556. width:22px;
  1557. height:19px;
  1558. }
  1559. #u118_img {
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:22px;
  1564. height:19px;
  1565. }
  1566. #u119 {
  1567. position:absolute;
  1568. left:2px;
  1569. top:2px;
  1570. width:18px;
  1571. visibility:hidden;
  1572. word-wrap:break-word;
  1573. }
  1574. #u120 {
  1575. position:absolute;
  1576. left:175px;
  1577. top:651px;
  1578. width:208px;
  1579. height:219px;
  1580. overflow:hidden;
  1581. visibility:hidden;
  1582. }
  1583. #u120_state0 {
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:208px;
  1588. height:219px;
  1589. -ms-overflow-x:hidden;
  1590. overflow-x:hidden;
  1591. -ms-overflow-y:hidden;
  1592. overflow-y:hidden;
  1593. background-image:none;
  1594. }
  1595. #u120_state0_content {
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:1px;
  1600. height:1px;
  1601. }
  1602. #u121 {
  1603. position:absolute;
  1604. left:1px;
  1605. top:1px;
  1606. width:206px;
  1607. height:217px;
  1608. }
  1609. #u121_img {
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:206px;
  1614. height:217px;
  1615. }
  1616. #u122 {
  1617. position:absolute;
  1618. left:2px;
  1619. top:100px;
  1620. width:202px;
  1621. visibility:hidden;
  1622. word-wrap:break-word;
  1623. }
  1624. #u123 {
  1625. position:absolute;
  1626. left:4px;
  1627. top:9px;
  1628. width:200px;
  1629. height:203px;
  1630. }
  1631. #u123_img {
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:200px;
  1636. height:203px;
  1637. }
  1638. #u124 {
  1639. position:absolute;
  1640. left:2px;
  1641. top:94px;
  1642. width:196px;
  1643. visibility:hidden;
  1644. word-wrap:break-word;
  1645. }
  1646. #u125 {
  1647. position:absolute;
  1648. left:91px;
  1649. top:122px;
  1650. width:25px;
  1651. height:19px;
  1652. overflow:hidden;
  1653. background-image:url('../../resources/images/transparent.gif');
  1654. }
  1655. #u126 {
  1656. position:absolute;
  1657. left:9px;
  1658. top:191px;
  1659. width:50px;
  1660. height:18px;
  1661. overflow:hidden;
  1662. background-image:url('../../resources/images/transparent.gif');
  1663. }
  1664. #u127 {
  1665. position:absolute;
  1666. left:147px;
  1667. top:191px;
  1668. width:50px;
  1669. height:18px;
  1670. overflow:hidden;
  1671. background-image:url('../../resources/images/transparent.gif');
  1672. }
  1673. #u128 {
  1674. position:absolute;
  1675. left:69px;
  1676. top:191px;
  1677. width:69px;
  1678. height:18px;
  1679. overflow:hidden;
  1680. background-image:url('../../resources/images/transparent.gif');
  1681. }
  1682. #u129 {
  1683. position:absolute;
  1684. left:547px;
  1685. top:631px;
  1686. width:22px;
  1687. height:19px;
  1688. }
  1689. #u129_img {
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:22px;
  1694. height:19px;
  1695. }
  1696. #u130 {
  1697. position:absolute;
  1698. left:2px;
  1699. top:2px;
  1700. width:18px;
  1701. visibility:hidden;
  1702. word-wrap:break-word;
  1703. }
  1704. #u131 {
  1705. position:absolute;
  1706. left:455px;
  1707. top:651px;
  1708. width:208px;
  1709. height:219px;
  1710. overflow:hidden;
  1711. visibility:hidden;
  1712. }
  1713. #u131_state0 {
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:208px;
  1718. height:219px;
  1719. -ms-overflow-x:hidden;
  1720. overflow-x:hidden;
  1721. -ms-overflow-y:hidden;
  1722. overflow-y:hidden;
  1723. background-image:none;
  1724. }
  1725. #u131_state0_content {
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:1px;
  1730. height:1px;
  1731. }
  1732. #u132 {
  1733. position:absolute;
  1734. left:1px;
  1735. top:1px;
  1736. width:206px;
  1737. height:217px;
  1738. }
  1739. #u132_img {
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:206px;
  1744. height:217px;
  1745. }
  1746. #u133 {
  1747. position:absolute;
  1748. left:2px;
  1749. top:100px;
  1750. width:202px;
  1751. visibility:hidden;
  1752. word-wrap:break-word;
  1753. }
  1754. #u134 {
  1755. position:absolute;
  1756. left:4px;
  1757. top:9px;
  1758. width:200px;
  1759. height:203px;
  1760. }
  1761. #u134_img {
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:200px;
  1766. height:203px;
  1767. }
  1768. #u135 {
  1769. position:absolute;
  1770. left:2px;
  1771. top:94px;
  1772. width:196px;
  1773. visibility:hidden;
  1774. word-wrap:break-word;
  1775. }
  1776. #u136 {
  1777. position:absolute;
  1778. left:91px;
  1779. top:122px;
  1780. width:25px;
  1781. height:19px;
  1782. overflow:hidden;
  1783. background-image:url('../../resources/images/transparent.gif');
  1784. }
  1785. #u137 {
  1786. position:absolute;
  1787. left:9px;
  1788. top:191px;
  1789. width:50px;
  1790. height:18px;
  1791. overflow:hidden;
  1792. background-image:url('../../resources/images/transparent.gif');
  1793. }
  1794. #u138 {
  1795. position:absolute;
  1796. left:147px;
  1797. top:191px;
  1798. width:50px;
  1799. height:18px;
  1800. overflow:hidden;
  1801. background-image:url('../../resources/images/transparent.gif');
  1802. }
  1803. #u139 {
  1804. position:absolute;
  1805. left:69px;
  1806. top:191px;
  1807. width:69px;
  1808. height:18px;
  1809. overflow:hidden;
  1810. background-image:url('../../resources/images/transparent.gif');
  1811. }
  1812. #u140 {
  1813. position:absolute;
  1814. left:263px;
  1815. top:115px;
  1816. width:77px;
  1817. height:30px;
  1818. text-align:right;
  1819. }
  1820. #u140_img {
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:77px;
  1825. height:30px;
  1826. }
  1827. #u141 {
  1828. position:absolute;
  1829. left:0px;
  1830. top:7px;
  1831. width:77px;
  1832. word-wrap:break-word;
  1833. }
  1834. #u142 {
  1835. position:absolute;
  1836. left:340px;
  1837. top:115px;
  1838. width:150px;
  1839. height:30px;
  1840. }
  1841. #u142_input {
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:150px;
  1846. height:30px;
  1847. font-family:'Arial Normal', 'Arial';
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:13px;
  1851. text-decoration:none;
  1852. color:#000000;
  1853. text-align:left;
  1854. }
  1855. #u143 {
  1856. position:absolute;
  1857. left:501px;
  1858. top:120px;
  1859. width:94px;
  1860. height:30px;
  1861. text-align:right;
  1862. }
  1863. #u143_img {
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:94px;
  1868. height:30px;
  1869. }
  1870. #u144 {
  1871. position:absolute;
  1872. left:0px;
  1873. top:7px;
  1874. width:94px;
  1875. word-wrap:break-word;
  1876. }
  1877. #u145 {
  1878. position:absolute;
  1879. left:595px;
  1880. top:120px;
  1881. width:150px;
  1882. height:30px;
  1883. }
  1884. #u145_input {
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:150px;
  1889. height:30px;
  1890. font-family:'Arial Normal', 'Arial';
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:13px;
  1894. text-decoration:none;
  1895. color:#000000;
  1896. text-align:left;
  1897. }
  1898. #u146 {
  1899. position:absolute;
  1900. left:435px;
  1901. top:118px;
  1902. width:55px;
  1903. height:25px;
  1904. }
  1905. #u146_input {
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:55px;
  1910. height:25px;
  1911. font-family:'Arial Normal', 'Arial';
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:13px;
  1915. text-decoration:none;
  1916. color:#000000;
  1917. text-align:center;
  1918. }
  1919. #u147 {
  1920. position:absolute;
  1921. left:688px;
  1922. top:122px;
  1923. width:55px;
  1924. height:25px;
  1925. }
  1926. #u147_input {
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:55px;
  1931. height:25px;
  1932. font-family:'Arial Normal', 'Arial';
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:13px;
  1936. text-decoration:none;
  1937. color:#000000;
  1938. text-align:center;
  1939. }
  1940. #u148 {
  1941. position:absolute;
  1942. left:340px;
  1943. top:145px;
  1944. width:230px;
  1945. height:225px;
  1946. overflow:hidden;
  1947. visibility:hidden;
  1948. }
  1949. #u148_state0 {
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:230px;
  1954. height:225px;
  1955. -ms-overflow-x:hidden;
  1956. overflow-x:hidden;
  1957. -ms-overflow-y:hidden;
  1958. overflow-y:hidden;
  1959. background-image:url('../../images/生成新工单/u127_state0.png');
  1960. background-position:left top;
  1961. background-repeat:no-repeat;
  1962. background-attachment:scroll;
  1963. background-size:auto;
  1964. }
  1965. #u148_state0_content {
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:1px;
  1970. height:1px;
  1971. }
  1972. #u149 {
  1973. position:absolute;
  1974. left:719px;
  1975. top:66px;
  1976. width:22px;
  1977. height:19px;
  1978. }
  1979. #u149_img {
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:22px;
  1984. height:19px;
  1985. }
  1986. #u150 {
  1987. position:absolute;
  1988. left:2px;
  1989. top:2px;
  1990. width:18px;
  1991. visibility:hidden;
  1992. word-wrap:break-word;
  1993. }
  1994. #u151 {
  1995. position:absolute;
  1996. left:627px;
  1997. top:86px;
  1998. width:208px;
  1999. height:219px;
  2000. overflow:hidden;
  2001. visibility:hidden;
  2002. }
  2003. #u151_state0 {
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:208px;
  2008. height:219px;
  2009. -ms-overflow-x:hidden;
  2010. overflow-x:hidden;
  2011. -ms-overflow-y:hidden;
  2012. overflow-y:hidden;
  2013. background-image:none;
  2014. }
  2015. #u151_state0_content {
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:1px;
  2020. height:1px;
  2021. }
  2022. #u152 {
  2023. position:absolute;
  2024. left:1px;
  2025. top:1px;
  2026. width:206px;
  2027. height:217px;
  2028. }
  2029. #u152_img {
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:206px;
  2034. height:217px;
  2035. }
  2036. #u153 {
  2037. position:absolute;
  2038. left:2px;
  2039. top:100px;
  2040. width:202px;
  2041. visibility:hidden;
  2042. word-wrap:break-word;
  2043. }
  2044. #u154 {
  2045. position:absolute;
  2046. left:4px;
  2047. top:9px;
  2048. width:200px;
  2049. height:203px;
  2050. }
  2051. #u154_img {
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:200px;
  2056. height:203px;
  2057. }
  2058. #u155 {
  2059. position:absolute;
  2060. left:2px;
  2061. top:94px;
  2062. width:196px;
  2063. visibility:hidden;
  2064. word-wrap:break-word;
  2065. }
  2066. #u156 {
  2067. position:absolute;
  2068. left:91px;
  2069. top:122px;
  2070. width:25px;
  2071. height:19px;
  2072. overflow:hidden;
  2073. background-image:url('../../resources/images/transparent.gif');
  2074. }
  2075. #u157 {
  2076. position:absolute;
  2077. left:9px;
  2078. top:191px;
  2079. width:50px;
  2080. height:18px;
  2081. overflow:hidden;
  2082. background-image:url('../../resources/images/transparent.gif');
  2083. }
  2084. #u158 {
  2085. position:absolute;
  2086. left:147px;
  2087. top:191px;
  2088. width:50px;
  2089. height:18px;
  2090. overflow:hidden;
  2091. background-image:url('../../resources/images/transparent.gif');
  2092. }
  2093. #u159 {
  2094. position:absolute;
  2095. left:69px;
  2096. top:191px;
  2097. width:69px;
  2098. height:18px;
  2099. overflow:hidden;
  2100. background-image:url('../../resources/images/transparent.gif');
  2101. }
  2102. #u160 {
  2103. position:absolute;
  2104. left:594px;
  2105. top:10px;
  2106. width:150px;
  2107. height:30px;
  2108. }
  2109. #u160_input {
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:150px;
  2114. height:30px;
  2115. font-family:'Arial Normal', 'Arial';
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:13px;
  2119. text-decoration:none;
  2120. color:#000000;
  2121. }
  2122. #u160_input:disabled {
  2123. color:grayText;
  2124. }