styles.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1578px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u2404_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u2404 {
  24. border-width:0px;
  25. position:absolute;
  26. left:21px;
  27. top:2181px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u2404_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u2405 {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:0px;
  46. height:0px;
  47. }
  48. #u2406_img {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:8px;
  54. height:28px;
  55. }
  56. #u2406 {
  57. border-width:0px;
  58. position:absolute;
  59. left:7px;
  60. top:13px;
  61. width:8px;
  62. height:28px;
  63. }
  64. #u2406_text {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:0px;
  70. visibility:hidden;
  71. word-wrap:break-word;
  72. }
  73. #u2407_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:167px;
  79. height:28px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-radius:0px;
  84. -moz-box-shadow:none;
  85. -webkit-box-shadow:none;
  86. box-shadow:none;
  87. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  88. font-weight:700;
  89. font-style:normal;
  90. }
  91. #u2407 {
  92. border-width:0px;
  93. position:absolute;
  94. left:21px;
  95. top:13px;
  96. width:167px;
  97. height:28px;
  98. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  99. font-weight:700;
  100. font-style:normal;
  101. }
  102. #u2407_text {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:167px;
  108. white-space:nowrap;
  109. }
  110. #u2408_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:109px;
  116. height:22px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 0);
  119. border:none;
  120. border-radius:0px;
  121. -moz-box-shadow:none;
  122. -webkit-box-shadow:none;
  123. box-shadow:none;
  124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  125. font-weight:700;
  126. font-style:normal;
  127. font-size:18px;
  128. }
  129. #u2408 {
  130. border-width:0px;
  131. position:absolute;
  132. left:21px;
  133. top:59px;
  134. width:109px;
  135. height:22px;
  136. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  137. font-weight:700;
  138. font-style:normal;
  139. font-size:18px;
  140. }
  141. #u2408_text {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:109px;
  147. white-space:nowrap;
  148. }
  149. #u2409_div {
  150. border-width:0px;
  151. position:absolute;
  152. left:0px;
  153. top:0px;
  154. width:672px;
  155. height:57px;
  156. background:inherit;
  157. background-color:rgba(255, 255, 255, 0);
  158. border:none;
  159. border-radius:0px;
  160. -moz-box-shadow:none;
  161. -webkit-box-shadow:none;
  162. box-shadow:none;
  163. font-size:16px;
  164. line-height:24px;
  165. }
  166. #u2409 {
  167. border-width:0px;
  168. position:absolute;
  169. left:56px;
  170. top:91px;
  171. width:672px;
  172. height:57px;
  173. font-size:16px;
  174. line-height:24px;
  175. }
  176. #u2409_text {
  177. border-width:0px;
  178. position:absolute;
  179. left:0px;
  180. top:0px;
  181. width:672px;
  182. word-wrap:break-word;
  183. }
  184. #u2410_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:245px;
  190. height:22px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-radius:0px;
  195. -moz-box-shadow:none;
  196. -webkit-box-shadow:none;
  197. box-shadow:none;
  198. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  199. font-weight:700;
  200. font-style:normal;
  201. font-size:18px;
  202. }
  203. #u2410 {
  204. border-width:0px;
  205. position:absolute;
  206. left:21px;
  207. top:170px;
  208. width:245px;
  209. height:22px;
  210. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  211. font-weight:700;
  212. font-style:normal;
  213. font-size:18px;
  214. }
  215. #u2410_text {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:245px;
  221. white-space:nowrap;
  222. }
  223. #u2411_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:1155px;
  229. height:583px;
  230. }
  231. #u2411 {
  232. border-width:0px;
  233. position:absolute;
  234. left:21px;
  235. top:236px;
  236. width:1155px;
  237. height:583px;
  238. }
  239. #u2411_text {
  240. border-width:0px;
  241. position:absolute;
  242. left:0px;
  243. top:0px;
  244. width:0px;
  245. visibility:hidden;
  246. word-wrap:break-word;
  247. }
  248. #u2412_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:-4px;
  252. top:-4px;
  253. width:30px;
  254. height:30px;
  255. }
  256. #u2412 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1036px;
  260. top:602px;
  261. width:20px;
  262. height:20px;
  263. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  264. font-weight:700;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#1E1E1E;
  268. }
  269. #u2412_text {
  270. border-width:0px;
  271. position:absolute;
  272. left:2px;
  273. top:2px;
  274. width:16px;
  275. word-wrap:break-word;
  276. }
  277. #u2413_img {
  278. border-width:0px;
  279. position:absolute;
  280. left:-4px;
  281. top:-4px;
  282. width:30px;
  283. height:30px;
  284. }
  285. #u2413 {
  286. border-width:0px;
  287. position:absolute;
  288. left:1092px;
  289. top:602px;
  290. width:20px;
  291. height:20px;
  292. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  293. font-weight:700;
  294. font-style:normal;
  295. font-size:14px;
  296. color:#1E1E1E;
  297. }
  298. #u2413_text {
  299. border-width:0px;
  300. position:absolute;
  301. left:2px;
  302. top:2px;
  303. width:16px;
  304. word-wrap:break-word;
  305. }
  306. #u2414 {
  307. border-width:0px;
  308. position:absolute;
  309. left:0px;
  310. top:0px;
  311. width:0px;
  312. height:0px;
  313. }
  314. #u2415_img {
  315. border-width:0px;
  316. position:absolute;
  317. left:-4px;
  318. top:-4px;
  319. width:40px;
  320. height:40px;
  321. }
  322. #u2415 {
  323. border-width:0px;
  324. position:absolute;
  325. left:1186px;
  326. top:236px;
  327. width:30px;
  328. height:30px;
  329. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  330. font-weight:700;
  331. font-style:normal;
  332. font-size:18px;
  333. color:#1E1E1E;
  334. }
  335. #u2415_text {
  336. border-width:0px;
  337. position:absolute;
  338. left:2px;
  339. top:4px;
  340. width:26px;
  341. word-wrap:break-word;
  342. }
  343. #u2416_div {
  344. border-width:0px;
  345. position:absolute;
  346. left:0px;
  347. top:0px;
  348. width:74px;
  349. height:19px;
  350. background:inherit;
  351. background-color:rgba(255, 255, 255, 0);
  352. border:none;
  353. border-radius:0px;
  354. -moz-box-shadow:none;
  355. -webkit-box-shadow:none;
  356. box-shadow:none;
  357. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  358. font-weight:700;
  359. font-style:normal;
  360. font-size:16px;
  361. }
  362. #u2416 {
  363. border-width:0px;
  364. position:absolute;
  365. left:1226px;
  366. top:243px;
  367. width:74px;
  368. height:19px;
  369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  370. font-weight:700;
  371. font-style:normal;
  372. font-size:16px;
  373. }
  374. #u2416_text {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:74px;
  380. word-wrap:break-word;
  381. }
  382. #u2417_div {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:352px;
  388. height:264px;
  389. background:inherit;
  390. background-color:rgba(255, 255, 255, 0);
  391. border:none;
  392. border-radius:0px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. line-height:22px;
  397. }
  398. #u2417 {
  399. border-width:0px;
  400. position:absolute;
  401. left:1226px;
  402. top:281px;
  403. width:352px;
  404. height:264px;
  405. line-height:22px;
  406. }
  407. #u2417_text {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:352px;
  413. word-wrap:break-word;
  414. }
  415. #u2418 {
  416. border-width:0px;
  417. position:absolute;
  418. left:1402px;
  419. top:413px;
  420. width:52px;
  421. height:23px;
  422. overflow:hidden;
  423. background-image:url('../../resources/images/transparent.gif');
  424. }
  425. #u2419_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:182px;
  431. height:70px;
  432. }
  433. #u2419 {
  434. border-width:0px;
  435. position:absolute;
  436. left:1330px;
  437. top:333px;
  438. width:182px;
  439. height:70px;
  440. color:#000000;
  441. text-align:left;
  442. line-height:18px;
  443. }
  444. #u2419_text {
  445. border-width:0px;
  446. position:absolute;
  447. left:2px;
  448. top:17px;
  449. width:178px;
  450. word-wrap:break-word;
  451. }
  452. #u2420 {
  453. border-width:0px;
  454. position:absolute;
  455. left:1464px;
  456. top:413px;
  457. width:59px;
  458. height:23px;
  459. overflow:hidden;
  460. background-image:url('../../resources/images/transparent.gif');
  461. }
  462. #u2421_img {
  463. border-width:0px;
  464. position:absolute;
  465. left:0px;
  466. top:0px;
  467. width:208px;
  468. height:70px;
  469. }
  470. #u2421 {
  471. border-width:0px;
  472. position:absolute;
  473. left:1370px;
  474. top:333px;
  475. width:208px;
  476. height:70px;
  477. color:#000000;
  478. text-align:left;
  479. line-height:18px;
  480. }
  481. #u2421_text {
  482. border-width:0px;
  483. position:absolute;
  484. left:2px;
  485. top:17px;
  486. width:204px;
  487. word-wrap:break-word;
  488. }
  489. #u2422 {
  490. border-width:0px;
  491. position:absolute;
  492. left:1249px;
  493. top:433px;
  494. width:59px;
  495. height:23px;
  496. overflow:hidden;
  497. background-image:url('../../resources/images/transparent.gif');
  498. }
  499. #u2423_img {
  500. border-width:0px;
  501. position:absolute;
  502. left:0px;
  503. top:0px;
  504. width:208px;
  505. height:57px;
  506. }
  507. #u2423 {
  508. border-width:0px;
  509. position:absolute;
  510. left:1233px;
  511. top:366px;
  512. width:208px;
  513. height:57px;
  514. color:#000000;
  515. text-align:left;
  516. line-height:18px;
  517. }
  518. #u2423_text {
  519. border-width:0px;
  520. position:absolute;
  521. left:2px;
  522. top:10px;
  523. width:204px;
  524. word-wrap:break-word;
  525. }
  526. #u2424 {
  527. border-width:0px;
  528. position:absolute;
  529. left:0px;
  530. top:0px;
  531. width:0px;
  532. height:0px;
  533. }
  534. #u2425_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:-4px;
  538. top:-4px;
  539. width:40px;
  540. height:40px;
  541. }
  542. #u2425 {
  543. border-width:0px;
  544. position:absolute;
  545. left:1186px;
  546. top:555px;
  547. width:30px;
  548. height:30px;
  549. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  550. font-weight:700;
  551. font-style:normal;
  552. font-size:18px;
  553. color:#1E1E1E;
  554. }
  555. #u2425_text {
  556. border-width:0px;
  557. position:absolute;
  558. left:2px;
  559. top:4px;
  560. width:26px;
  561. word-wrap:break-word;
  562. }
  563. #u2426_div {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:74px;
  569. height:19px;
  570. background:inherit;
  571. background-color:rgba(255, 255, 255, 0);
  572. border:none;
  573. border-radius:0px;
  574. -moz-box-shadow:none;
  575. -webkit-box-shadow:none;
  576. box-shadow:none;
  577. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  578. font-weight:700;
  579. font-style:normal;
  580. font-size:16px;
  581. }
  582. #u2426 {
  583. border-width:0px;
  584. position:absolute;
  585. left:1226px;
  586. top:562px;
  587. width:74px;
  588. height:19px;
  589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  590. font-weight:700;
  591. font-style:normal;
  592. font-size:16px;
  593. }
  594. #u2426_text {
  595. border-width:0px;
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:74px;
  600. word-wrap:break-word;
  601. }
  602. #u2427_div {
  603. border-width:0px;
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:352px;
  608. height:22px;
  609. background:inherit;
  610. background-color:rgba(255, 255, 255, 0);
  611. border:none;
  612. border-radius:0px;
  613. -moz-box-shadow:none;
  614. -webkit-box-shadow:none;
  615. box-shadow:none;
  616. line-height:22px;
  617. }
  618. #u2427 {
  619. border-width:0px;
  620. position:absolute;
  621. left:1226px;
  622. top:600px;
  623. width:352px;
  624. height:22px;
  625. line-height:22px;
  626. }
  627. #u2427_text {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:352px;
  633. word-wrap:break-word;
  634. }
  635. #u2428_img {
  636. border-width:0px;
  637. position:absolute;
  638. left:0px;
  639. top:0px;
  640. width:1155px;
  641. height:583px;
  642. }
  643. #u2428 {
  644. border-width:0px;
  645. position:absolute;
  646. left:21px;
  647. top:895px;
  648. width:1155px;
  649. height:583px;
  650. }
  651. #u2428_text {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:0px;
  657. visibility:hidden;
  658. word-wrap:break-word;
  659. }
  660. #u2429 {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:0px;
  666. height:0px;
  667. }
  668. #u2430_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:-4px;
  672. top:-4px;
  673. width:40px;
  674. height:40px;
  675. }
  676. #u2430 {
  677. border-width:0px;
  678. position:absolute;
  679. left:1186px;
  680. top:1095px;
  681. width:30px;
  682. height:30px;
  683. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  684. font-weight:700;
  685. font-style:normal;
  686. font-size:18px;
  687. color:#1E1E1E;
  688. }
  689. #u2430_text {
  690. border-width:0px;
  691. position:absolute;
  692. left:2px;
  693. top:4px;
  694. width:26px;
  695. word-wrap:break-word;
  696. }
  697. #u2431_div {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:143px;
  703. height:19px;
  704. background:inherit;
  705. background-color:rgba(255, 255, 255, 0);
  706. border:none;
  707. border-radius:0px;
  708. -moz-box-shadow:none;
  709. -webkit-box-shadow:none;
  710. box-shadow:none;
  711. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  712. font-weight:700;
  713. font-style:normal;
  714. font-size:16px;
  715. }
  716. #u2431 {
  717. border-width:0px;
  718. position:absolute;
  719. left:1226px;
  720. top:1102px;
  721. width:143px;
  722. height:19px;
  723. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  724. font-weight:700;
  725. font-style:normal;
  726. font-size:16px;
  727. }
  728. #u2431_text {
  729. border-width:0px;
  730. position:absolute;
  731. left:0px;
  732. top:0px;
  733. width:143px;
  734. word-wrap:break-word;
  735. }
  736. #u2432_div {
  737. border-width:0px;
  738. position:absolute;
  739. left:0px;
  740. top:0px;
  741. width:352px;
  742. height:22px;
  743. background:inherit;
  744. background-color:rgba(255, 255, 255, 0);
  745. border:none;
  746. border-radius:0px;
  747. -moz-box-shadow:none;
  748. -webkit-box-shadow:none;
  749. box-shadow:none;
  750. line-height:22px;
  751. }
  752. #u2432 {
  753. border-width:0px;
  754. position:absolute;
  755. left:1226px;
  756. top:1140px;
  757. width:352px;
  758. height:22px;
  759. line-height:22px;
  760. }
  761. #u2432_text {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:352px;
  767. word-wrap:break-word;
  768. }
  769. #u2433 {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:0px;
  775. height:0px;
  776. }
  777. #u2434_img {
  778. border-width:0px;
  779. position:absolute;
  780. left:-4px;
  781. top:-4px;
  782. width:40px;
  783. height:40px;
  784. }
  785. #u2434 {
  786. border-width:0px;
  787. position:absolute;
  788. left:1186px;
  789. top:996px;
  790. width:30px;
  791. height:30px;
  792. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  793. font-weight:700;
  794. font-style:normal;
  795. font-size:18px;
  796. color:#1E1E1E;
  797. }
  798. #u2434_text {
  799. border-width:0px;
  800. position:absolute;
  801. left:2px;
  802. top:4px;
  803. width:26px;
  804. word-wrap:break-word;
  805. }
  806. #u2435_div {
  807. border-width:0px;
  808. position:absolute;
  809. left:0px;
  810. top:0px;
  811. width:143px;
  812. height:19px;
  813. background:inherit;
  814. background-color:rgba(255, 255, 255, 0);
  815. border:none;
  816. border-radius:0px;
  817. -moz-box-shadow:none;
  818. -webkit-box-shadow:none;
  819. box-shadow:none;
  820. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  821. font-weight:700;
  822. font-style:normal;
  823. font-size:16px;
  824. }
  825. #u2435 {
  826. border-width:0px;
  827. position:absolute;
  828. left:1226px;
  829. top:1003px;
  830. width:143px;
  831. height:19px;
  832. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  833. font-weight:700;
  834. font-style:normal;
  835. font-size:16px;
  836. }
  837. #u2435_text {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:143px;
  843. word-wrap:break-word;
  844. }
  845. #u2436_div {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:352px;
  851. height:44px;
  852. background:inherit;
  853. background-color:rgba(255, 255, 255, 0);
  854. border:none;
  855. border-radius:0px;
  856. -moz-box-shadow:none;
  857. -webkit-box-shadow:none;
  858. box-shadow:none;
  859. line-height:22px;
  860. }
  861. #u2436 {
  862. border-width:0px;
  863. position:absolute;
  864. left:1226px;
  865. top:1041px;
  866. width:352px;
  867. height:44px;
  868. line-height:22px;
  869. }
  870. #u2436_text {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:352px;
  876. word-wrap:break-word;
  877. }
  878. #u2437 {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:0px;
  884. height:0px;
  885. }
  886. #u2438_img {
  887. border-width:0px;
  888. position:absolute;
  889. left:-4px;
  890. top:-4px;
  891. width:40px;
  892. height:40px;
  893. }
  894. #u2438 {
  895. border-width:0px;
  896. position:absolute;
  897. left:1186px;
  898. top:897px;
  899. width:30px;
  900. height:30px;
  901. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  902. font-weight:700;
  903. font-style:normal;
  904. font-size:18px;
  905. color:#1E1E1E;
  906. }
  907. #u2438_text {
  908. border-width:0px;
  909. position:absolute;
  910. left:2px;
  911. top:4px;
  912. width:26px;
  913. word-wrap:break-word;
  914. }
  915. #u2439_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:143px;
  921. height:19px;
  922. background:inherit;
  923. background-color:rgba(255, 255, 255, 0);
  924. border:none;
  925. border-radius:0px;
  926. -moz-box-shadow:none;
  927. -webkit-box-shadow:none;
  928. box-shadow:none;
  929. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  930. font-weight:700;
  931. font-style:normal;
  932. font-size:16px;
  933. }
  934. #u2439 {
  935. border-width:0px;
  936. position:absolute;
  937. left:1226px;
  938. top:904px;
  939. width:143px;
  940. height:19px;
  941. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  942. font-weight:700;
  943. font-style:normal;
  944. font-size:16px;
  945. }
  946. #u2439_text {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:143px;
  952. word-wrap:break-word;
  953. }
  954. #u2440_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:352px;
  960. height:44px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border:none;
  964. border-radius:0px;
  965. -moz-box-shadow:none;
  966. -webkit-box-shadow:none;
  967. box-shadow:none;
  968. line-height:22px;
  969. }
  970. #u2440 {
  971. border-width:0px;
  972. position:absolute;
  973. left:1226px;
  974. top:942px;
  975. width:352px;
  976. height:44px;
  977. line-height:22px;
  978. }
  979. #u2440_text {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:352px;
  985. word-wrap:break-word;
  986. }
  987. #u2441_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:-4px;
  991. top:-4px;
  992. width:30px;
  993. height:30px;
  994. }
  995. #u2441 {
  996. border-width:0px;
  997. position:absolute;
  998. left:987px;
  999. top:1272px;
  1000. width:20px;
  1001. height:20px;
  1002. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1003. font-weight:700;
  1004. font-style:normal;
  1005. font-size:14px;
  1006. color:#1E1E1E;
  1007. }
  1008. #u2441_text {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:2px;
  1012. top:2px;
  1013. width:16px;
  1014. word-wrap:break-word;
  1015. }
  1016. #u2442_img {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:-4px;
  1020. top:-4px;
  1021. width:30px;
  1022. height:30px;
  1023. }
  1024. #u2442 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:1043px;
  1028. top:1272px;
  1029. width:20px;
  1030. height:20px;
  1031. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1032. font-weight:700;
  1033. font-style:normal;
  1034. font-size:14px;
  1035. color:#1E1E1E;
  1036. }
  1037. #u2442_text {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:2px;
  1041. top:2px;
  1042. width:16px;
  1043. word-wrap:break-word;
  1044. }
  1045. #u2443_img {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:-4px;
  1049. top:-4px;
  1050. width:30px;
  1051. height:30px;
  1052. }
  1053. #u2443 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:1110px;
  1057. top:1272px;
  1058. width:20px;
  1059. height:20px;
  1060. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1061. font-weight:700;
  1062. font-style:normal;
  1063. font-size:14px;
  1064. color:#1E1E1E;
  1065. }
  1066. #u2443_text {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:2px;
  1070. top:2px;
  1071. width:16px;
  1072. word-wrap:break-word;
  1073. }
  1074. #u2444_img {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:1155px;
  1080. height:583px;
  1081. }
  1082. #u2444 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:21px;
  1086. top:1545px;
  1087. width:1155px;
  1088. height:583px;
  1089. }
  1090. #u2444_text {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:0px;
  1096. visibility:hidden;
  1097. word-wrap:break-word;
  1098. }
  1099. #u2445 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:0px;
  1105. height:0px;
  1106. }
  1107. #u2446_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:-4px;
  1111. top:-4px;
  1112. width:40px;
  1113. height:40px;
  1114. }
  1115. #u2446 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:1186px;
  1119. top:1550px;
  1120. width:30px;
  1121. height:30px;
  1122. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1123. font-weight:700;
  1124. font-style:normal;
  1125. font-size:18px;
  1126. color:#1E1E1E;
  1127. }
  1128. #u2446_text {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:2px;
  1132. top:4px;
  1133. width:26px;
  1134. word-wrap:break-word;
  1135. }
  1136. #u2447_div {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:143px;
  1142. height:19px;
  1143. background:inherit;
  1144. background-color:rgba(255, 255, 255, 0);
  1145. border:none;
  1146. border-radius:0px;
  1147. -moz-box-shadow:none;
  1148. -webkit-box-shadow:none;
  1149. box-shadow:none;
  1150. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1151. font-weight:700;
  1152. font-style:normal;
  1153. font-size:16px;
  1154. }
  1155. #u2447 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:1226px;
  1159. top:1557px;
  1160. width:143px;
  1161. height:19px;
  1162. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1163. font-weight:700;
  1164. font-style:normal;
  1165. font-size:16px;
  1166. }
  1167. #u2447_text {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:143px;
  1173. word-wrap:break-word;
  1174. }
  1175. #u2448_div {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:0px;
  1179. top:0px;
  1180. width:352px;
  1181. height:22px;
  1182. background:inherit;
  1183. background-color:rgba(255, 255, 255, 0);
  1184. border:none;
  1185. border-radius:0px;
  1186. -moz-box-shadow:none;
  1187. -webkit-box-shadow:none;
  1188. box-shadow:none;
  1189. line-height:22px;
  1190. }
  1191. #u2448 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:1226px;
  1195. top:1595px;
  1196. width:352px;
  1197. height:22px;
  1198. line-height:22px;
  1199. }
  1200. #u2448_text {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:352px;
  1206. word-wrap:break-word;
  1207. }
  1208. #u2449 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:0px;
  1214. height:0px;
  1215. }
  1216. #u2450_img {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:-4px;
  1220. top:-4px;
  1221. width:40px;
  1222. height:40px;
  1223. }
  1224. #u2450 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:1186px;
  1228. top:1639px;
  1229. width:30px;
  1230. height:30px;
  1231. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1232. font-weight:700;
  1233. font-style:normal;
  1234. font-size:18px;
  1235. color:#1E1E1E;
  1236. }
  1237. #u2450_text {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:2px;
  1241. top:4px;
  1242. width:26px;
  1243. word-wrap:break-word;
  1244. }
  1245. #u2451_div {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:143px;
  1251. height:19px;
  1252. background:inherit;
  1253. background-color:rgba(255, 255, 255, 0);
  1254. border:none;
  1255. border-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1260. font-weight:700;
  1261. font-style:normal;
  1262. font-size:16px;
  1263. color:#FF0000;
  1264. }
  1265. #u2451 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:1226px;
  1269. top:1646px;
  1270. width:143px;
  1271. height:19px;
  1272. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1273. font-weight:700;
  1274. font-style:normal;
  1275. font-size:16px;
  1276. color:#FF0000;
  1277. }
  1278. #u2451_text {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:143px;
  1284. word-wrap:break-word;
  1285. }
  1286. #u2452_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:352px;
  1292. height:22px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. line-height:22px;
  1301. }
  1302. #u2452 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:1226px;
  1306. top:1684px;
  1307. width:352px;
  1308. height:22px;
  1309. line-height:22px;
  1310. }
  1311. #u2452_text {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:352px;
  1317. word-wrap:break-word;
  1318. }
  1319. #u2453 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:0px;
  1325. height:0px;
  1326. }
  1327. #u2454_img {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:-4px;
  1331. top:-4px;
  1332. width:40px;
  1333. height:40px;
  1334. }
  1335. #u2454 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:1186px;
  1339. top:1730px;
  1340. width:30px;
  1341. height:30px;
  1342. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1343. font-weight:700;
  1344. font-style:normal;
  1345. font-size:18px;
  1346. color:#1E1E1E;
  1347. }
  1348. #u2454_text {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:2px;
  1352. top:4px;
  1353. width:26px;
  1354. word-wrap:break-word;
  1355. }
  1356. #u2455_div {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:119px;
  1362. height:19px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. border:none;
  1366. border-radius:0px;
  1367. -moz-box-shadow:none;
  1368. -webkit-box-shadow:none;
  1369. box-shadow:none;
  1370. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1371. font-weight:700;
  1372. font-style:normal;
  1373. font-size:16px;
  1374. color:#FF0000;
  1375. }
  1376. #u2455 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:1226px;
  1380. top:1737px;
  1381. width:119px;
  1382. height:19px;
  1383. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1384. font-weight:700;
  1385. font-style:normal;
  1386. font-size:16px;
  1387. color:#FF0000;
  1388. }
  1389. #u2455_text {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:119px;
  1395. word-wrap:break-word;
  1396. }
  1397. #u2456_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:352px;
  1403. height:88px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 0);
  1406. border:none;
  1407. border-radius:0px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. line-height:22px;
  1412. }
  1413. #u2456 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:1226px;
  1417. top:1775px;
  1418. width:352px;
  1419. height:88px;
  1420. line-height:22px;
  1421. }
  1422. #u2456_text {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:352px;
  1428. word-wrap:break-word;
  1429. }
  1430. #u2457 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:0px;
  1436. height:0px;
  1437. }
  1438. #u2458_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:-4px;
  1442. top:-4px;
  1443. width:40px;
  1444. height:40px;
  1445. }
  1446. #u2458 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:1186px;
  1450. top:1873px;
  1451. width:30px;
  1452. height:30px;
  1453. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1454. font-weight:700;
  1455. font-style:normal;
  1456. font-size:18px;
  1457. color:#1E1E1E;
  1458. }
  1459. #u2458_text {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:2px;
  1463. top:4px;
  1464. width:26px;
  1465. word-wrap:break-word;
  1466. }
  1467. #u2459_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:119px;
  1473. height:19px;
  1474. background:inherit;
  1475. background-color:rgba(255, 255, 255, 0);
  1476. border:none;
  1477. border-radius:0px;
  1478. -moz-box-shadow:none;
  1479. -webkit-box-shadow:none;
  1480. box-shadow:none;
  1481. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1482. font-weight:700;
  1483. font-style:normal;
  1484. font-size:16px;
  1485. }
  1486. #u2459 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:1226px;
  1490. top:1880px;
  1491. width:119px;
  1492. height:19px;
  1493. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1494. font-weight:700;
  1495. font-style:normal;
  1496. font-size:16px;
  1497. }
  1498. #u2459_text {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:119px;
  1504. word-wrap:break-word;
  1505. }
  1506. #u2460_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:352px;
  1512. height:22px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 0);
  1515. border:none;
  1516. border-radius:0px;
  1517. -moz-box-shadow:none;
  1518. -webkit-box-shadow:none;
  1519. box-shadow:none;
  1520. line-height:22px;
  1521. }
  1522. #u2460 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:1226px;
  1526. top:1918px;
  1527. width:352px;
  1528. height:22px;
  1529. line-height:22px;
  1530. }
  1531. #u2460_text {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:352px;
  1537. word-wrap:break-word;
  1538. }
  1539. #u2461 {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:1226px;
  1543. top:1735px;
  1544. width:64px;
  1545. height:23px;
  1546. overflow:hidden;
  1547. background-image:url('../../resources/images/transparent.gif');
  1548. }
  1549. #u2462_img {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:245px;
  1555. height:88px;
  1556. }
  1557. #u2462 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:1226px;
  1561. top:1642px;
  1562. width:245px;
  1563. height:88px;
  1564. text-align:left;
  1565. }
  1566. #u2462_text {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:2px;
  1570. top:13px;
  1571. width:241px;
  1572. word-wrap:break-word;
  1573. }
  1574. #u2463_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:-4px;
  1578. top:-4px;
  1579. width:30px;
  1580. height:30px;
  1581. }
  1582. #u2463 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:204px;
  1586. top:1750px;
  1587. width:20px;
  1588. height:20px;
  1589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1590. font-weight:700;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#1E1E1E;
  1594. }
  1595. #u2463_text {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:2px;
  1599. top:2px;
  1600. width:16px;
  1601. word-wrap:break-word;
  1602. }
  1603. #u2464_img {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:-4px;
  1607. top:-4px;
  1608. width:30px;
  1609. height:30px;
  1610. }
  1611. #u2464 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:297px;
  1615. top:1750px;
  1616. width:20px;
  1617. height:20px;
  1618. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1619. font-weight:700;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. color:#1E1E1E;
  1623. }
  1624. #u2464_text {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:2px;
  1628. top:2px;
  1629. width:16px;
  1630. word-wrap:break-word;
  1631. }
  1632. #u2465_img {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:-4px;
  1636. top:-4px;
  1637. width:30px;
  1638. height:30px;
  1639. }
  1640. #u2465 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:1030px;
  1644. top:1837px;
  1645. width:20px;
  1646. height:20px;
  1647. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1648. font-weight:700;
  1649. font-style:normal;
  1650. font-size:14px;
  1651. color:#1E1E1E;
  1652. }
  1653. #u2465_text {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:2px;
  1657. top:2px;
  1658. width:16px;
  1659. word-wrap:break-word;
  1660. }
  1661. #u2466_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:-4px;
  1665. top:-4px;
  1666. width:30px;
  1667. height:30px;
  1668. }
  1669. #u2466 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:1091px;
  1673. top:1837px;
  1674. width:20px;
  1675. height:20px;
  1676. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1677. font-weight:700;
  1678. font-style:normal;
  1679. font-size:14px;
  1680. color:#1E1E1E;
  1681. }
  1682. #u2466_text {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:2px;
  1686. top:2px;
  1687. width:16px;
  1688. word-wrap:break-word;
  1689. }
  1690. #u2467 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:1231px;
  1694. top:1642px;
  1695. width:102px;
  1696. height:23px;
  1697. overflow:hidden;
  1698. background-image:url('../../resources/images/transparent.gif');
  1699. }
  1700. #u2468_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:245px;
  1706. height:88px;
  1707. }
  1708. #u2468 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:1226px;
  1712. top:1544px;
  1713. width:245px;
  1714. height:88px;
  1715. text-align:left;
  1716. }
  1717. #u2468_text {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:2px;
  1721. top:24px;
  1722. width:241px;
  1723. word-wrap:break-word;
  1724. }
  1725. #u2469 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:0px;
  1731. height:0px;
  1732. }
  1733. #u2470_img {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:-4px;
  1737. top:-4px;
  1738. width:40px;
  1739. height:40px;
  1740. }
  1741. #u2470 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:1186px;
  1745. top:2181px;
  1746. width:30px;
  1747. height:30px;
  1748. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1749. font-weight:700;
  1750. font-style:normal;
  1751. font-size:18px;
  1752. color:#1E1E1E;
  1753. }
  1754. #u2470_text {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:2px;
  1758. top:4px;
  1759. width:26px;
  1760. word-wrap:break-word;
  1761. }
  1762. #u2471_div {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:119px;
  1768. height:19px;
  1769. background:inherit;
  1770. background-color:rgba(255, 255, 255, 0);
  1771. border:none;
  1772. border-radius:0px;
  1773. -moz-box-shadow:none;
  1774. -webkit-box-shadow:none;
  1775. box-shadow:none;
  1776. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1777. font-weight:700;
  1778. font-style:normal;
  1779. font-size:16px;
  1780. }
  1781. #u2471 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:1226px;
  1785. top:2188px;
  1786. width:119px;
  1787. height:19px;
  1788. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1789. font-weight:700;
  1790. font-style:normal;
  1791. font-size:16px;
  1792. }
  1793. #u2471_text {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:119px;
  1799. word-wrap:break-word;
  1800. }
  1801. #u2472_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:352px;
  1807. height:22px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 0);
  1810. border:none;
  1811. border-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. line-height:22px;
  1816. }
  1817. #u2472 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1226px;
  1821. top:2226px;
  1822. width:352px;
  1823. height:22px;
  1824. line-height:22px;
  1825. }
  1826. #u2472_text {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:352px;
  1832. word-wrap:break-word;
  1833. }
  1834. #u2473 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:0px;
  1840. height:0px;
  1841. }
  1842. #u2474_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:-4px;
  1846. top:-4px;
  1847. width:40px;
  1848. height:40px;
  1849. }
  1850. #u2474 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:1186px;
  1854. top:2248px;
  1855. width:30px;
  1856. height:30px;
  1857. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1858. font-weight:700;
  1859. font-style:normal;
  1860. font-size:18px;
  1861. color:#1E1E1E;
  1862. }
  1863. #u2474_text {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:2px;
  1867. top:4px;
  1868. width:26px;
  1869. word-wrap:break-word;
  1870. }
  1871. #u2475_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:158px;
  1877. height:19px;
  1878. background:inherit;
  1879. background-color:rgba(255, 255, 255, 0);
  1880. border:none;
  1881. border-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1886. font-weight:700;
  1887. font-style:normal;
  1888. font-size:16px;
  1889. }
  1890. #u2475 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:1226px;
  1894. top:2255px;
  1895. width:158px;
  1896. height:19px;
  1897. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1898. font-weight:700;
  1899. font-style:normal;
  1900. font-size:16px;
  1901. }
  1902. #u2475_text {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:158px;
  1908. word-wrap:break-word;
  1909. }
  1910. #u2476_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:352px;
  1916. height:22px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border:none;
  1920. border-radius:0px;
  1921. -moz-box-shadow:none;
  1922. -webkit-box-shadow:none;
  1923. box-shadow:none;
  1924. line-height:22px;
  1925. }
  1926. #u2476 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:1226px;
  1930. top:2293px;
  1931. width:352px;
  1932. height:22px;
  1933. line-height:22px;
  1934. }
  1935. #u2476_text {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:352px;
  1941. word-wrap:break-word;
  1942. }
  1943. #u2477_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:-4px;
  1947. top:-4px;
  1948. width:30px;
  1949. height:30px;
  1950. }
  1951. #u2477 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:239px;
  1955. top:2292px;
  1956. width:20px;
  1957. height:20px;
  1958. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1959. font-weight:700;
  1960. font-style:normal;
  1961. font-size:14px;
  1962. color:#1E1E1E;
  1963. }
  1964. #u2477_text {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:2px;
  1968. top:2px;
  1969. width:16px;
  1970. word-wrap:break-word;
  1971. }
  1972. #u2478_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:-4px;
  1976. top:-4px;
  1977. width:30px;
  1978. height:30px;
  1979. }
  1980. #u2478 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:312px;
  1984. top:2292px;
  1985. width:20px;
  1986. height:20px;
  1987. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1988. font-weight:700;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. color:#1E1E1E;
  1992. }
  1993. #u2478_text {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:2px;
  1997. top:2px;
  1998. width:16px;
  1999. word-wrap:break-word;
  2000. }
  2001. #u2479_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:83px;
  2007. height:40px;
  2008. background:inherit;
  2009. background-color:rgba(20, 146, 138, 1);
  2010. border:none;
  2011. border-radius:5px;
  2012. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2013. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2014. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2015. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2016. font-weight:700;
  2017. font-style:normal;
  2018. }
  2019. #u2479 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:222px;
  2023. top:7px;
  2024. width:83px;
  2025. height:40px;
  2026. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2027. font-weight:700;
  2028. font-style:normal;
  2029. }
  2030. #u2479_text {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:2px;
  2034. top:12px;
  2035. width:79px;
  2036. word-wrap:break-word;
  2037. }