styles.css 34 KB

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