styles.css 35 KB

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